Skip to content
This repository was archived by the owner on Apr 30, 2026. It is now read-only.

Commit 9ac108f

Browse files
committed
Fix CI build
1 parent ae3039e commit 9ac108f

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ jobs:
1616
- run: yarn test
1717
- run: yarn deploy
1818
- run: ls -l build/* build.zip
19-
- run: sha256sum build/* build.zip | tee SHA256SUMS.txt
19+
- run: sha256sum build.zip | tee SHA256SUMS.txt
20+
- run: find build -type f -exec sha256sum {} \; | tee -a SHA256SUMS.txt
2021
- run: find build -type f -exec cat {} \; | sha256sum | tee -a SHA256SUMS.txt
2122
- run: mkdir dist && mv build.zip SHA256SUMS.txt dist
2223
- store_artifacts:

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ script:
99
- yarn test
1010
- yarn deploy
1111
- ls -l build/* build.zip
12-
- sha256sum build/* build.zip | tee SHA256SUMS.txt
12+
- sha256sum build.zip | tee SHA256SUMS.txt
13+
- find build -type f -exec sha256sum {} \; | tee -a SHA256SUMS.txt
1314
- find build -type f -exec cat {} \; | sha256sum | tee -a SHA256SUMS.txt
1415
deploy:
1516
provider: releases

0 commit comments

Comments
 (0)