Skip to content
Merged
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
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,14 @@ jobs:
runs-on: ubuntu-latest
environment: release
permissions:
contents: read # for actions/checkout
id-token: write # for npm trusted publishing via OIDC
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Setup Node.js
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -124,6 +130,11 @@ jobs:
permissions:
contents: write # for creating GitHub release
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Download release notes
uses: actions/download-artifact@v4
with:
Expand Down
Loading