File tree Expand file tree Collapse file tree 1 file changed +11
-8
lines changed
Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -2,31 +2,32 @@ name: Continuous Deployment
22
33on :
44 push :
5- branches : [main]
5+ # branches: [main]
6+ branches : [cesare/aave-1667-sdk-fix-build-and-ci-setup]
67
78concurrency :
89 group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
910 cancel-in-progress : true
1011
1112jobs :
12- verify :
13- name : Verify
14- uses : ./.github/workflows/verify.yml
15- secrets : inherit
13+ # verify:
14+ # name: Verify
15+ # uses: ./.github/workflows/verify.yml
16+ # secrets: inherit
1617
1718 publish :
1819 name : Publish Snapshot
1920 runs-on : ubuntu-latest
20- needs : verify
21+ # needs: verify
2122
2223 steps :
2324 - uses : actions/checkout@v4
2425
2526 - name : Setup Repository
2627 uses : ./.github/actions/setup
2728
28- - name : Configure NPM Auth Token
29- run : echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> ~/.npmrc
29+ # - name: Configure NPM Auth Token
30+ # run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> ~/.npmrc
3031
3132 - name : Create Snapshot
3233 id : create_snapshot
4344 - name : Publish Snapshot
4445 if : env.changeset_exists == 'true'
4546 run : pnpm changeset publish --snapshot --tag canary --no-git-tag
47+ env :
48+ NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments