This repository was archived by the owner on Apr 30, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717 - run : yarn deploy
1818 - run : ls -l build/* build.zip
1919 - run : sha256sum build.zip | tee SHA256SUMS.txt
20- - run : find build -type f -exec sha256sum {} \; | tee -a SHA256SUMS.txt
21- - run : find build -type f -exec cat {} \; | sha256sum | tee -a SHA256SUMS.txt
20+ - run : find build -type f -exec ls {} \; | sort | xargs sha256sum | tee -a SHA256SUMS.txt
21+ - run : find build -type f -exec ls {} \; | sort | xargs cat | sha256sum | tee -a SHA256SUMS.txt
2222 - run : mkdir dist && mv build.zip SHA256SUMS.txt dist
2323 - store_artifacts :
2424 path : dist
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ script:
1010 - yarn deploy
1111 - ls -l build/* build.zip
1212 - sha256sum build.zip | tee SHA256SUMS.txt
13- - find build -type f -exec sha256sum {} \; | tee -a SHA256SUMS.txt
14- - find build -type f -exec cat {} \; | sha256sum | tee -a SHA256SUMS.txt
13+ - find build -type f -exec ls {} \; | sort | xargs sha256sum | tee -a SHA256SUMS.txt
14+ - find build -type f -exec ls {} \; | sort | xargs cat | sha256sum | tee -a SHA256SUMS.txt
1515deploy :
1616 provider : releases
1717 api_key : $GITHUB_OAUTH_TOKEN
You can’t perform that action at this time.
0 commit comments