-
-
Notifications
You must be signed in to change notification settings - Fork 75
64 lines (55 loc) · 1.45 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
61
62
63
64
name: Release
on:
workflow_call:
inputs:
publish-tag:
required: true
type: string
secrets:
CARGO_REGISTRY_TOKEN:
required: true
TAGGER_GITHUB_TOKEN:
required: true
concurrency:
group: release
env:
RUST_BACKTRACE: 1
CARGO_TERM_COLOR: always
jobs:
create-release:
name: Create release
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: true
- name: Install rust
uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Publish
run: cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- name: Tag the version
env:
GITHUB_TOKEN: ${{ secrets.TAGGER_GITHUB_TOKEN }}
run: |
git tag "${{ inputs.publish-tag }}"
git push origin "${{ inputs.publish-tag }}"
- uses: taiki-e/create-gh-release-action@v1
name: Create github release
with:
branch: main
ref: refs/tags/${{ inputs.publish-tag }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
upload-binary:
name: Run the build-binaries workflow
needs:
- create-release
if: github.ref == 'refs/heads/main'
uses: ./.github/workflows/build-binaries.yml
with:
publish-tag: ${{ inputs.publish-tag }}