Skip to content

Commit

Permalink
Fix snapshot release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
s1hofmann committed Feb 15, 2024
1 parent e12635d commit 2ef2ff3
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/snapshot_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
node: [18]
runs-on: ${{matrix.os}}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- name: Set up Git repository
uses: actions/checkout@v3
Expand All @@ -29,7 +31,9 @@ jobs:
- name: Setup pnpm
uses: pnpm/[email protected]
- name: Install
run: pnpm i
run: |
pnpm whoami
pnpm i
- name: Install @nut-tree/libnut@next
run: |
pnpm --filter @nut-tree/libnut i @nut-tree/libnut-darwin@next @nut-tree/libnut-linux@next @nut-tree/libnut-win32@next
Expand All @@ -44,6 +48,8 @@ jobs:
needs:
- test
runs-on: ubuntu-latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- name: Set up Git repository
uses: actions/checkout@v3
Expand All @@ -56,7 +62,9 @@ jobs:
- name: Setup pnpm
uses: pnpm/[email protected]
- name: Install
run: pnpm i
run: |
pnpm whoami
pnpm i
- name: Install @nut-tree/libnut@next
run: |
pnpm --filter @nut-tree/libnut i @nut-tree/libnut-darwin@next @nut-tree/libnut-linux@next @nut-tree/libnut-win32@next
Expand Down

0 comments on commit 2ef2ff3

Please sign in to comment.