Skip to content

Commit e731a05

Browse files
committed
ci: switch to release-plz
1 parent 85e4481 commit e731a05

File tree

4 files changed

+28
-134
lines changed

4 files changed

+28
-134
lines changed

.github/workflows/draft_release.yml

-58
This file was deleted.

.github/workflows/publish_artifacts.yml

-41
This file was deleted.

.github/workflows/published_release.yml

-35
This file was deleted.

.github/workflows/release-plz.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Release-plz
2+
3+
permissions:
4+
pull-requests: write
5+
contents: write
6+
7+
on:
8+
push:
9+
branches:
10+
- main
11+
workflow_dispatch:
12+
13+
jobs:
14+
release-plz:
15+
name: Release-plz
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout repository
19+
uses: actions/checkout@v4
20+
with:
21+
fetch-depth: 0
22+
- name: Install Rust toolchain
23+
uses: dtolnay/rust-toolchain@stable
24+
- name: Run release-plz
25+
uses: MarcoIeni/[email protected]
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

0 commit comments

Comments
 (0)