-
Notifications
You must be signed in to change notification settings - Fork 133
39 lines (33 loc) · 880 Bytes
/
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
name: Publish
on:
push:
tags:
- '*'
env:
CARGO_TERM_COLOR: always
jobs:
release:
name: Publish for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
artifact_name: heimdall
asset_name: heimdall-linux-amd64
- os: macos-latest
artifact_name: heimdall
asset_name: heimdall-macos-amd64
steps:
- uses: actions/checkout@v2
- name: Build Binaries
run: |
cargo clean
RUSTFLAGS="-C codegen-units=1" CARGO_PROFILE_RELEASE_LTO=true cargo build --release
- name: Upload Binaries
uses: svenstaro/upload-release-action@v2
with:
file: ./target/release/${{ matrix.artifact_name }}
asset_name: ${{ matrix.asset_name }}
tag: ${{ github.ref }}
overwrite: true