-
Notifications
You must be signed in to change notification settings - Fork 220
66 lines (56 loc) · 1.59 KB
/
build.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
name: Build and Release
on:
workflow_dispatch:
push:
branches: [main]
tags:
- "v*.*.*"
jobs:
build:
strategy:
matrix:
os:
- windows-latest
- buildjet-16vcpu-ubuntu-2004
- macos-latest
- macos-14
runs-on: ${{ matrix.os }}
env:
MATRIX_OS: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Latest Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
override: true
- name: Build
id: build
shell: bash
run: |
cargo build --all --release
binary_extension=""
if [[ "$RUNNER_OS" == "Linux" ]]; then
binary_path="metaboss-ubuntu-latest"
fi
if [[ "${RUNNER_OS}" == "Windows" ]]; then
binary_extension=".exe"
binary_path="metaboss-windows-latest${binary_extension}"
fi
if [[ "${RUNNER_OS}" == "macOS" ]]; then
if [[ "${MATRIX_OS}" == "macos-14" ]]; then
binary_path="metaboss-macos-m1-latest"
else
binary_path="metaboss-macos-intel-latest"
fi
fi
mv "target/release/metaboss${binary_extension}" "${binary_path}"
echo "::set-output name=binary_path::${binary_path}"
strip "${binary_path}"
- name: Release Tags
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ${{ steps.build.outputs.binary_path }}