-
Notifications
You must be signed in to change notification settings - Fork 3
97 lines (80 loc) · 2.54 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
name: Release
permissions:
"contents": "write"
on:
pull_request:
push:
tags:
- "**[0-9]+.[0-9]+.[0-9]+*"
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Check version numbers match
run: |
card_ver=v$(cargo metadata --format-version=1 --no-deps | jq '.packages[0].version' | tr -d '"')
if [[ $card_ver != "${{ github.ref_name }}" ]]; then exit 1; fi
build_linux:
needs: [checks]
runs-on: ubuntu-latest
steps:
- name: Checkout cardamon
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Install NodeJS dependencies
run: npm --prefix ui install
- name: Build UI
run: npm --prefix ui run build-only
- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Build Cardamon
run: cargo build --release
- name: Build release artifact
run: |
mkdir artifact
cp target/release/cardamon artifact/cardamon
cp LICENSE artifact/
cp README.md artifact/
- name: Compress build artifact
run: tar -czf cardamon-x86_64-unknown-linux-gnu-${{ github.ref_name }}.tgz -C artifact .
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
path: cardamon-x86_64-unknown-linux-gnu-${{ github.ref_name }}.tgz
publish_crate:
needs: [build_linux]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Publish to crates.io
run: cargo publish --no-verify --token ${{ secrets.CRATES_IO_TOKEN }}
release:
needs: [publish_crate]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: artifact
merge-multiple: true
- name: Create release
run: gh release create ${{ github.ref_name }} --draft --title "Release ${{ github.ref_name }}" --notes "" artifact/cardamon-x86_64-unknown-linux-gnu-${{ github.ref_name }}.tgz
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}