Skip to content
Merged

Dev #71

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
branches:
- main

permissions:
id-token: write # Required for OIDC
contents: read

# Only one run at a time
concurrency:
group: ${{ github.workflow }}
Expand Down Expand Up @@ -46,7 +50,7 @@ jobs:
uses: panates/github-actions/.github/workflows/node-release.yaml@v1
secrets:
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ env.NPM_TOKEN }}

release:
if: >
Expand All @@ -67,4 +71,4 @@ jobs:
uses: panates/github-actions/.github/workflows/node-release.yaml@v1
secrets:
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ env.NPM_TOKEN }}
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ jobs:
with:
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
node-version: ${{ matrix.node }}
github-registry: "false"

- name: Apply tests
run: |
Expand Down
Loading