-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (43 loc) · 1.11 KB
/
release-plz.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Release-pr
permissions:
pull-requests: write
contents: write
on:
workflow_dispatch:
repository_dispatch:
types: [publish]
push:
branches:
- master
jobs:
release-pr:
name: Release-plz
runs-on: ubuntu-latest
environment: Cargo
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: initial submodule
run:
git submodule update --init
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: cargo update
run: cargo update
- name: Cache
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Run release-plz
uses: MarcoIeni/release-plz-action@v0.5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}