Skip to content

Commit 89c99ca

Browse files
committed
fix: correct release-plz action ref (release-plz/action@v0.5)
The quickstart docs I fetched had email-obfuscation on the action ref: 'release-plz/[email protected]' was actually 'release-plz/action@v0.5.x' with the @v0.5.x mangled into an email-shaped string. GitHub Actions rejected it with 'Expected format {org}/{repo}[/path]@ref'. Correct ref: release-plz/action@v0.5 (floating major-minor tag, latest patch is v0.5.130 as of 2026-06-09).
1 parent 77c2f25 commit 89c99ca

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/release-plz.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ jobs:
3232
(github.event_name == 'workflow_dispatch' && inputs.command == 'release')
3333
runs-on: ubuntu-latest
3434
permissions:
35-
contents: write # push tags, create GitHub releases
36-
pull-requests: read # detect the release PR and its commits
35+
contents: write # push tags, create GitHub releases
36+
pull-requests: read # detect the release PR and its commits
3737
steps:
3838
- name: Checkout repository
3939
uses: actions/checkout@v6
4040
with:
41-
fetch-depth: 0 # release-plz needs full git history
41+
fetch-depth: 0 # release-plz needs full git history
4242
persist-credentials: false
4343
- name: Install Rust toolchain
4444
uses: dtolnay/rust-toolchain@stable
4545
- name: Run release-plz
46-
uses: release-plz/[email protected]
46+
uses: release-plz/action@v0.5
4747
with:
4848
command: release
4949
env:
@@ -64,8 +64,8 @@ jobs:
6464
(github.event_name == 'workflow_dispatch' && inputs.command == 'release-pr')
6565
runs-on: ubuntu-latest
6666
permissions:
67-
contents: write # push to the release-pr branch
68-
pull-requests: write # create / update the release PR
67+
contents: write # push to the release-pr branch
68+
pull-requests: write # create / update the release PR
6969
concurrency:
7070
# Only one release-pr job per branch at a time — prevents PR conflicts.
7171
# cancel-in-progress: false → never skip an pending update.
@@ -80,7 +80,7 @@ jobs:
8080
- name: Install Rust toolchain
8181
uses: dtolnay/rust-toolchain@stable
8282
- name: Run release-plz
83-
uses: release-plz/[email protected]
83+
uses: release-plz/action@v0.5
8484
with:
8585
command: release-pr
8686
env:

0 commit comments

Comments
 (0)