Skip to content

Commit bd9abc1

Browse files
committed
chore: experiment with snapshot releases
1 parent 9625e1e commit bd9abc1

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/workflows/cd.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,32 @@ name: Continuous Deployment
22

33
on:
44
push:
5-
branches: [main]
5+
# branches: [main]
6+
branches: [cesare/aave-1667-sdk-fix-build-and-ci-setup]
67

78
concurrency:
89
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
910
cancel-in-progress: true
1011

1112
jobs:
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
@@ -43,3 +44,5 @@ jobs:
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 }}

0 commit comments

Comments
 (0)