-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (57 loc) · 1.75 KB
/
Copy pathdepoly.yml
File metadata and controls
69 lines (57 loc) · 1.75 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
name: Deploy
on:
push:
tags:
- "0.0.1"
permissions:
contents: write
jobs:
build-and-upload:
name: Build and upload
runs-on: $\{\{ matrix.os \}\}
strategy:
matrix:
# You can add more, for any target you'd like!
include:
- build: linux
os: ubuntu-latest
target: x86_64-unknown-linux-musl
- build: windows-gnu
os: windows-latest
target: x86_64-pc-windows-gnu
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Get the release version from the tag
shell: bash
run: echo "VERSION=$\{GITHUB_REF#refs/tags/\}" >> $GITHUB_ENV
- name: Install Rust
# Or @nightly if you want
uses: dtolnay/rust-toolchain@stable
# Arguments to pass in
with:
# Make Rust compile to our target (defined in the matrix)
targets: $\{\{ matrix.target \}\}
- name: Build
uses: actions-rs/cargo@v1
with:
use-cross: true
command: build
args: --verbose --release --target $\{\{ matrix.target \}\}
- name: Build archive
shell: bash
run: |
# Replace with the name of your binary
binary_name="penerate"
dirname="$binary_name-$\{\{ env.VERSION \}\}-$\{\{ matrix.target \}\}"
mkdir "$dirname"
if [ "$\{\{ matrix.os \}\}" = "windows-latest" ]; then
mv "target/$\{\{ matrix.target \}\}/release/$binary_name.exe" "$dirname"
else
mv "target/$\{\{ matrix.target \}\}/release/$binary_name" "$dirname"
fi
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
$\{\{ env.ASSET \}\}