-
Notifications
You must be signed in to change notification settings - Fork 3
86 lines (81 loc) · 2.4 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
81
82
83
84
85
86
name: Release
on:
push:
tags:
- "*.*.*"
env:
CARGO_TERM_COLOR: always
jobs:
release-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: |
cargo build --release --target x86_64-unknown-linux-gnu
mv target/x86_64-unknown-linux-gnu/release/waitz ./waitz
chmod +x waitz
tar -czf waitz-linux-x86_64.tar.gz waitz
rm waitz
rustup target add x86_64-unknown-linux-musl
cargo build --release --target x86_64-unknown-linux-musl
mv target/x86_64-unknown-linux-musl/release/waitz ./waitz
chmod +x waitz
tar -czf waitz-alpine-x86_64.tar.gz waitz
- name: Publish release
uses: softprops/action-gh-release@v1
with:
files: waitz-*
draft: true
body_path: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
release-darwin:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build
run: |
cargo build --release --target x86_64-apple-darwin
mv target/x86_64-apple-darwin/release/waitz ./waitz
chmod +x waitz
tar -czf waitz-darwin-x86_64.tar.gz waitz
- name: Publish release
uses: softprops/action-gh-release@v1
with:
files: waitz-*
draft: true
body_path: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
release-crate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build and publish to crates.io
run: |
cargo login ${{ secrets.CRATES_TOKEN }}
cargo publish
release-win:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build
shell: powershell
run: |
cargo build --release --target x86_64-pc-windows-msvc
Compress-Archive -Path ".\target\x86_64-pc-windows-msvc\release\waitz.exe" -DestinationPath ".\waitz-win-x64.zip"
- name: Publish release
uses: softprops/action-gh-release@v1
with:
files: waitz-*
draft: true
body_path: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}