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.
2 parents 2325fb2 + eed9df5 commit 1103c5cCopy full SHA for 1103c5c
.github/workflows/publish_0.2.yml
@@ -0,0 +1,30 @@
1
+# release-plz for the stable 0.2 branch
2
+
3
+name: Release-plz v0.2
4
5
+permissions:
6
+ pull-requests: write
7
+ contents: write
8
9
+on:
10
+ push:
11
+ branches:
12
+ - libc-0.2
13
14
+jobs:
15
+ release-plz:
16
+ name: Release-plz v0.2
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - name: Checkout repository
20
+ uses: actions/checkout@v4
21
+ with:
22
+ fetch-depth: 0
23
+ - name: Install Rust (rustup)
24
+ run: rustup update stable --no-self-update && rustup default stable
25
+ - name: Run release-plz
26
+ uses: MarcoIeni/release-plz-action@v0.5
27
28
+ command: release-pr
29
+ env:
30
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments