-
Notifications
You must be signed in to change notification settings - Fork 0
184 lines (170 loc) · 5.63 KB
/
publish.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
name: Publish
on:
workflow_dispatch:
push:
tags:
- v[0-9]+.*
permissions:
contents: write
jobs:
publish:
name: Publish to crates.io and GitHub
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache dependencies
uses: Swatinem/rust-cache@v2
- name: Run tests
run: cargo test
- name: Check version matches tag
if: github.event_name == 'push'
run: |
PKG_VERSION=$(cargo pkgid | cut -d# -f2 | cut -d: -f2)
TAG_VERSION=${GITHUB_REF#refs/tags/v}
if [ "$PKG_VERSION" != "$TAG_VERSION" ]; then
echo "Version mismatch: Tag version ($TAG_VERSION) doesn't match Cargo.toml version ($PKG_VERSION)"
exit 1
fi
- name: Publish to crates.io
if: github.event_name == 'push'
run: cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- name: Create GitHub Release
if: github.event_name == 'push'
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
build-macos:
name: Build macOS binary
runs-on: macos-latest
needs: publish
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Build release binary
run: |
cargo build --release
mkdir -p release-artifacts
cp target/release/termv release-artifacts/termv-${{ github.ref_name }}-darwin-x86_64
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: macos-binary
path: release-artifacts/*
- name: Upload to release
if: github.event_name == 'push'
uses: softprops/action-gh-release@v1
with:
files: release-artifacts/*
build-windows:
name: Build Windows binary
runs-on: windows-latest
needs: publish
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Build release binary
run: |
cargo build --release
mkdir release-artifacts
copy target\release\termv.exe release-artifacts\termv-${{ github.ref_name }}-windows-x86_64.exe
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: windows-binary
path: release-artifacts\*
- name: Upload to release
if: github.event_name == 'push'
uses: softprops/action-gh-release@v1
with:
files: release-artifacts\*
build-linux-arm64:
name: Build Linux ARM64 binary
runs-on: ubuntu-latest
needs: publish
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: aarch64-unknown-linux-gnu
- uses: Swatinem/rust-cache@v2
- name: Install cross-compilation dependencies
run: |
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu
- name: Build release binary
run: |
cargo build --release --target aarch64-unknown-linux-gnu
mkdir -p release-artifacts
cp target/aarch64-unknown-linux-gnu/release/termv release-artifacts/termv-${{ github.ref_name }}-linux-arm64
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: linux-arm64-binary
path: release-artifacts/*
- name: Upload to release
if: github.event_name == 'push'
uses: softprops/action-gh-release@v1
with:
files: release-artifacts/*
build-linux-x86:
name: Build Linux x86 (32-bit) binary
runs-on: ubuntu-latest
needs: publish
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: i686-unknown-linux-gnu
- uses: Swatinem/rust-cache@v2
- name: Install cross-compilation dependencies
run: |
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install -y gcc-multilib
- name: Build release binary
run: |
cargo build --release --target i686-unknown-linux-gnu
mkdir -p release-artifacts
cp target/i686-unknown-linux-gnu/release/termv release-artifacts/termv-${{ github.ref_name }}-linux-x86
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: linux-x86-binary
path: release-artifacts/*
- name: Upload to release
if: github.event_name == 'push'
uses: softprops/action-gh-release@v1
with:
files: release-artifacts/*
build-linux-x86_64:
name: Build Linux x86_64 (64-bit) binary
runs-on: ubuntu-latest
needs: publish
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-unknown-linux-gnu
- uses: Swatinem/rust-cache@v2
- name: Build release binary
run: |
cargo build --release --target x86_64-unknown-linux-gnu
mkdir -p release-artifacts
cp target/x86_64-unknown-linux-gnu/release/termv release-artifacts/termv-${{ github.ref_name }}-linux-x86_64
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: linux-x86_64-binary
path: release-artifacts/*
- name: Upload to release
if: github.event_name == 'push'
uses: softprops/action-gh-release@v1
with:
files: release-artifacts/*