-
Notifications
You must be signed in to change notification settings - Fork 8
69 lines (55 loc) · 1.84 KB
/
release.yml
File metadata and controls
69 lines (55 loc) · 1.84 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: Release binaries to GitHub
on:
release:
types: [published]
jobs:
release_win64:
name: Build and release Windows 64Bit
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: |
cargo build --release
Compress-Archive -LiteralPath target/release/di-csv2xml.exe -DestinationPath di-csv2xml-win64.zip
- name: Github Upload
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: di-csv2xml-win64.zip
asset_name: di-csv2xml-win64.zip
tag: ${{ github.ref }}
release_os-x:
name: Build and release OS-X
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: cargo build --release
- name: Github Upload
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/release/di-csv2xml
asset_name: di-csv2xml-osx
tag: ${{ github.ref }}
release_linux:
name: Build and release Linux
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
# Build musl target, so binary is compatible with any linux distribution
- name: Build
run: |
rustup target add x86_64-unknown-linux-musl
cargo build --release --target x86_64-unknown-linux-musl
- name: Github Upload
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/x86_64-unknown-linux-musl/release/di-csv2xml
asset_name: di-csv2xml-linux
tag: ${{ github.ref }}