-
Notifications
You must be signed in to change notification settings - Fork 3
172 lines (147 loc) · 5.11 KB
/
release.yml
File metadata and controls
172 lines (147 loc) · 5.11 KB
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
name: Release
on:
workflow_dispatch:
push:
branches:
- main
env:
RUST_BACKTRACE: 1
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: sudo apt-get update && sudo apt-get install libdbus-1-dev libfontconfig1-dev
- run: cargo check
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- uses: Swatinem/rust-cache@v2
- run: sudo apt-get update && sudo apt-get install libdbus-1-dev libfontconfig1-dev
- run: cargo fmt --all -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
- run: sudo apt-get update && sudo apt-get install libdbus-1-dev libfontconfig1-dev
- run: cargo clippy -- -D warnings
check-release:
needs: [ check, fmt, clippy ]
name: Check Release
runs-on: ubuntu-latest
if: github.actor != 'sbosnick-bot'
outputs:
new_release_published: ${{ steps.semantic.outputs.new_release_published }}
new_release_version: ${{ steps.semantic.outputs.new_release_version }}
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
id: semantic
with:
dry_run: true
build:
needs: [ check-release ]
if: needs.check-release.outputs.new_release_published == 'true'
strategy:
matrix:
include:
- target: linux-x64
rust_target: x86_64-unknown-linux-gnu
- target: windows-x64
rust_target: x86_64-pc-windows-gnu
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install Rust Stable
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.rust_target }}
- uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.target }}
- name: Update version
run: |
sed -i '/\[package\]/,/^version = "[^"]*"$/ s/^version = "[^"]*"$/version = "'"${{ needs.check-release.outputs.new_release_version }}"'"/' Cargo.toml
cargo update --package vrc-osc-manager
shell: bash
- name: Build Binary
run: |
if [ "${{ matrix.target }}" == "linux-x64" ]; then
sudo apt-get update
sudo apt-get install --assume-yes libdbus-1-dev libfontconfig1-dev
cargo build --release --target ${{ matrix.rust_target }}
else
sudo apt-get update
sudo apt-get install --assume-yes gcc-mingw-w64-x86-64 osslsigncode
cargo build --release --target ${{ matrix.rust_target }}
echo "${{ secrets.WIN_SIGN_KEY }}" | base64 -d > code_sign.key.pem
echo "${{ secrets.WIN_SIGN_CERT }}" | base64 -d > code_sign.cert.pem
mkdir ./target/${{ matrix.rust_target }}/signed
osslsigncode sign \
-certs code_sign.cert.pem \
-key code_sign.key.pem \
-n "VRC OSC Manager" \
-i https://github.com/DASPRiD/vrc-osc-manager/ \
-t http://timestamp.sectigo.com \
-in ./target/${{ matrix.rust_target }}/release/vrc-osc-manager.exe \
-out ./target/${{ matrix.rust_target }}/signed/vrc-osc-manager.exe
fi
shell: bash
- name: Upload Binary Artifact
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.target }}-binary
path: |
./target/x86_64-unknown-linux-gnu/release/vrc-osc-manager
./target/x86_64-pc-windows-gnu/signed/vrc-osc-manager.exe
semantic-release:
needs: [ check-release, build ]
if: needs.check-release.outputs.new_release_published == 'true'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install Rust Stable
uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Download Binaries
uses: actions/download-artifact@v8
with:
path: release-artifacts
- name: Update version
run: |
sed -i '/\[package\]/,/^version = "[^"]*"$/ s/^version = "[^"]*"$/version = "'"${{ needs.check-release.outputs.new_release_version }}"'"/' Cargo.toml
cargo update --package vrc-osc-manager
shell: bash
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
id: semantic
with:
semantic_version: 25.0.3
extra_plugins: |
@semantic-release/changelog@^6
@semantic-release/git@^10
@semantic-release/github@^12