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: 5 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@ on:

concurrency: ${{ github.workflow }}-${{ github.ref }}

permissions:
contents: write
id-token: write # Needed for npm trusted publishing
pull-requests: write

jobs:
release-stable:
runs-on: ubuntu-24.04
name: Release Stable
permissions:
contents: write
id-token: write # Needed for npm trusted publishing
pull-requests: write
outputs:
published: ${{ steps.changesets.outputs.published }}
steps:
Expand Down Expand Up @@ -59,8 +60,6 @@ jobs:
runs-on: ubuntu-24.04
name: Release Unstable
needs: release-stable
permissions:
id-token: write # Needed for npm trusted publishing
if: always() && github.event_name == 'push' && needs.release-stable.outputs.published == 'false'
steps:
- name: Checkout Repo
Expand Down