Skip to content

Commit 095679e

Browse files
committed
Revert "ci: remove release-plz workflow"
This reverts commit bb1ce53.
1 parent bb1ce53 commit 095679e

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/release-plz.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

Comments
 (0)