We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb1ce53 commit 095679eCopy full SHA for 095679e
.github/workflows/release-plz.yml
@@ -0,0 +1,32 @@
1
+name: Release-plz
2
+
3
+permissions:
4
+ pull-requests: write
5
+ contents: write
6
+ id-token: write # Required for trusted publishing
7
8
+on:
9
+ push:
10
+ branches:
11
+ - main
12
13
+jobs:
14
+ release-plz:
15
+ name: Release-plz
16
+ runs-on: ubuntu-latest
17
+ if: ${{ github.repository_owner == 'kuestcom' }}
18
+ steps:
19
+ - name: Checkout repository
20
+ uses: actions/checkout@v6
21
+ with:
22
+ fetch-depth: 0
23
24
+ - name: Install Rust toolchain
25
+ uses: dtolnay/rust-toolchain@f7ccc83f9ed1e5b9c81d8a67d7ad1a747e22a561
26
27
+ toolchain: '1.88'
28
29
+ - name: Run release-plz
30
+ uses: MarcoIeni/release-plz-action@e592230ad39e3ec735402572601fc621aa24355c # v0.5.124
31
+ env:
32
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments