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
name: Release
on:
push:
tags:
permissions:
contents: write
env:
CARGO_TERM_COLOR: always
jobs:
release:
strategy:
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
artifact: xmaster
asset_name: xmaster-x86_64-linux
- os: macos-latest
target: aarch64-apple-darwin
artifact: xmaster
asset_name: xmaster-aarch64-darwin
- os: macos-latest
target: x86_64-apple-darwin
artifact: xmaster
asset_name: xmaster-x86_64-darwin
- os: windows-latest
target: x86_64-pc-windows-msvc
artifact: xmaster.exe
asset_name: xmaster-x86_64-windows.exe
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.target }}
- run: cargo build --release --target ${{ matrix.target }}
- name: Rename artifact
shell: bash
run: cp target/${{ matrix.target }}/release/${{ matrix.artifact }} ${{ matrix.asset_name }}
- name: Upload to release
uses: softprops/action-gh-release@v2
with:
files: ${{ matrix.asset_name }}