Skip to content

Commit 36087be

Browse files
committed
fix: 🐛 Try to fix github workflow error: No files passed
1 parent 3124f00 commit 36087be

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Release
22
on:
33
push:
44
branches:
5-
- master
5+
- main
66
- beta
77
jobs:
88
release:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
},
9898
"scripts": {
9999
"build:contracts": "hardhat compile",
100-
"build:src": "rm -rf ./lib && typechain --target=ethers-v6 --out-dir typechainV6 artifacts/**/Config.json artifacts/**/EntitiesRegistry.json artifacts/**/Market.json && tsc -p ./tsconfig.build.json",
100+
"build:src": "rm -rf ./lib && typechain --target=ethers-v6 --out-dir typechainV6 ./artifacts/contracts/Config.sol/Config.json ./artifacts/contracts/EntitiesRegistry.sol/EntitiesRegistry.json ./artifacts/contracts/Market.sol/Market.json && tsc -p ./tsconfig.build.json",
101101
"test:contracts": "hardhat test",
102102
"test:src": "mocha -t 60000 --extension spec.ts test/src",
103103
"lint": "solhint . && eslint --ext .ts",

0 commit comments

Comments
 (0)