-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (66 loc) · 1.85 KB
/
release.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
name: Build Native and Publish on GH Releases
on:
push:
tags:
- "v*.*.*"
jobs:
build-windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Rust.
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
default: true
- name: Build Binary
run: cargo build --release
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: windows-artifact
path: target/release/argentum-native.exe
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Required Packages
run: |
sudo apt-get update
sudo apt-get install libgtk-3-dev libasound2-dev
- name: Setup Rust.
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
default: true
- name: Build Binary
run: cargo build --release
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: linux-artifact
path: target/release/argentum-native
create-release:
runs-on: ubuntu-latest
needs: [build-windows, build-linux]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Download All Artifacts
uses: actions/download-artifact@v2
- name: Rename Artifacts
run: |
mv ./windows-artifact/argentum-native.exe ./argentum-windows.exe
mv ./linux-artifact/argentum-native ./argentum-linux.run
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: |
argentum-windows.exe
argentum-linux.run
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}