-
Notifications
You must be signed in to change notification settings - Fork 26
80 lines (64 loc) · 2.17 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
74
75
76
77
78
79
80
name: Release
on:
release:
types: [published]
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macOS-latest
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-musl
flags: --target=x86_64-unknown-linux-musl
- os: windows-latest
suffix: .exe
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
### Submodule hackery
- name: Initialize submodules
run: git submodule update --init --recursive
### Prereqs
- name: Linux - Install musl-tools
if: runner.os == 'Linux'
run: sudo apt-get install -y musl-tools
- name: Add rustup target
if: matrix.target
run: |
rustup target add ${{ matrix.target }}
### Release
- name: Build release CLI
if: github.event_name == 'release'
run: cargo build --release --verbose ${{ matrix.flags }}
working-directory: cli
- name: Linux - Strip CLI binary
if: github.event_name == 'release' && runner.os == 'Linux'
run: |
ls target
ls target/${{ matrix.target }}
ls target/${{ matrix.target }}/release
strip target/${{ matrix.target }}/release/askalono
working-directory: cli
### Upload
- name: Zip release binary
if: runner.os != 'macOS'
run: 7z a askalono.zip askalono${{ matrix.suffix }}
working-directory: cli/target/${{ matrix.target }}/release
- name: macOS - Zip release binary
if: runner.os == 'macOS'
run: zip -r -X askalono.zip askalono${{ matrix.suffix }}
working-directory: cli/target/${{ matrix.target }}/release
- name: Upload release binary
uses: actions/upload-release-asset@v1.0.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./cli/target/${{ matrix.target }}/release/askalono.zip
asset_name: askalono-${{ runner.os }}.zip
asset_content_type: application/octet-stream