-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (57 loc) · 1.43 KB
/
release.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Release Pipeline
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
env:
HUSKY: 0
RUST_TOOLCHAIN: stable
TOOLCHAIN_PROFILE: minimal
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
packages: write
pull-requests: write
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.15.0
cache: 'npm'
- name: Install npm Packages
run: npm ci
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: ${{ env.TOOLCHAIN_PROFILE }}
toolchain: ${{ env.RUST_TOOLCHAIN }}
override: true
components: rustfmt, clippy
- name: Use Cache
uses: Swatinem/rust-cache@v2
- name: Install cargo-bump
uses: actions-rs/cargo@v1
with:
command: install
args: cargo-bump
- name: Install cross
uses: actions-rs/cargo@v1
with:
command: install
args: cross
- name: Semantic Release
env:
CROSS_REMOTE_COPY_CACHE: 1
GITHUB_USERNAME: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release