-
Notifications
You must be signed in to change notification settings - Fork 18
80 lines (66 loc) · 1.99 KB
/
deploy.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
74
75
76
77
78
79
80
name: Deploy
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
build-and-upload:
name: Build and Upload
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- build: linux
os: ubuntu-latest
target: x86_64-unknown-linux-gnu
use-cross: true
- build: linux
os: ubuntu-latest
target: aarch64-unknown-linux-gnu
use-cross: true
- build: macos
os: macos-latest
target: x86_64-apple-darwin
use-cross: true
- build: macos
os: macos-latest
target: aarch64-apple-darwin
use-cross: true
- build: windows-gnu
os: windows-latest
target: x86_64-pc-windows-gnu
use-cross: false
steps:
- name: Clone Repo
uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
target: ${{matrix.target}}
override: true
- name: Get the release version from the tag
shell: bash
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- name: Build
uses: actions-rs/cargo@v1
with:
use-cross: ${{ matrix.use-cross }}
command: build
args: --verbose --release --target ${{ matrix.target }}
- name: Set Asset
shell: bash
run: |
binary_name="markdown-oxide"
dirname="$binary_name-${{ env.VERSION }}-${{ matrix.target }}"
mkdir "$dirname"
if [ "${{ matrix.os }}" = "windows-latest" ]; then
echo "ASSET=target/${{ matrix.target }}/release/$binary_name.exe" >> $GITHUB_ENV
else
echo "ASSET=target/${{ matrix.target }}/release/$binary_name" >> $GITHUB_ENV
fi
- name: Upload the binaries
uses: softprops/action-gh-release@v1
with:
files: |
${{ env.ASSET }}