Skip to content

Commit 0e72d0e

Browse files
committed
fix: add environment variables and permissions for deploy job in CI workflow
1 parent 8299225 commit 0e72d0e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ jobs:
2828
deploy:
2929
needs: build-and-test
3030
runs-on: ubuntu-latest
31+
env:
32+
CI: true
33+
permissions:
34+
contents: write # Required to commit deployment files.
35+
environment: ${{ inputs.network }}
3136
steps:
3237
- uses: actions/checkout@v4
3338
with:

0 commit comments

Comments
 (0)