Skip to content

Commit 27bf7d6

Browse files
committed
fix: uncomment build-and-test job in deployment workflow
1 parent d5fc0f2 commit 27bf7d6

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/sharing-smart-contract-deploy.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ on:
2424
default: 'dev'
2525

2626
jobs:
27-
# build-and-test:
28-
# uses: ./.github/workflows/sharing-smart-contracts-ci.yml
29-
# with:
30-
# node-version: 20
27+
build-and-test:
28+
uses: ./.github/workflows/sharing-smart-contracts-ci.yml
29+
with:
30+
node-version: 20
3131

3232
deploy:
33-
# needs: build-and-test
33+
needs: build-and-test
3434
runs-on: ubuntu-latest
3535
env:
3636
CI: true
@@ -87,7 +87,6 @@ jobs:
8787
ADMIN_PRIVATE_KEY: ${{ secrets.ADMIN_PRIVATE_KEY }}
8888
POCO_ADDRESS: ${{ vars.POCO_ADDRESS }}
8989
DATASET_REGISTRY_ADDRESS: ${{ vars.DATASET_REGISTRY_ADDRESS }}
90-
HARDHAT_IGNITION_CONFIRM_DEPLOYMENT: ${{ vars.HARDHAT_IGNITION_CONFIRM_DEPLOYMENT }}
9190
run: |
9291
if [ "${{ inputs.network }}" = "hardhat" ]; then
9392
npm run deploy -- --network ${{ inputs.network }}

0 commit comments

Comments
 (0)