We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb04891 commit a1269fdCopy full SHA for a1269fd
.github/workflows/rust-release.yml
@@ -42,14 +42,18 @@ jobs:
42
- uses: actions/checkout@v4
43
with:
44
fetch-depth: 0
45
- - name: Run release-plz
46
- uses: release-plz/action@v0.5
+ - name: Install release-plz
+ uses: taiki-e/install-action@v2
47
48
- command: release-pr
49
- manifest_path: rust/main/Cargo.toml
50
- config: rust/main/release-plz.toml
+ tool: release-plz
+ - name: Run release-plz
+ working-directory: ./rust/main
51
env:
52
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53
+ run: |
54
+ git config user.name "github-actions[bot]"
55
+ git config user.email "github-actions[bot]@users.noreply.github.com"
56
+ release-plz release-pr --git-token "$GITHUB_TOKEN"
57
- name: Summary
58
if: always()
59
run: |
0 commit comments