Skip to content

Commit 684f4da

Browse files
committed
fix: 🐛 Another release.yml fix
1 parent 04ab862 commit 684f4da

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/release.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
- name: Test
2525
run: yarn test:src && yarn test:contracts
2626
- name: Build project
27-
run: yarn build:contracts & yarn build:src
27+
run: |
28+
yarn build:contracts
29+
yarn build:src
2830
- name: Release
2931
env:
3032
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
"@openzeppelin/contracts": "^4.8.3"
9696
},
9797
"scripts": {
98-
"build:contracts": "hardhat clean && hardhat compile && tsc -p ./tsconfig.build.json",
98+
"build:contracts": "hardhat compile",
9999
"build:src": "rm -rf ./lib && tsc -p ./tsconfig.build.json",
100100
"test:contracts": "hardhat test",
101101
"test:src": "mocha -t 60000 --extension spec.ts test/src",

0 commit comments

Comments
 (0)