aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/publish.yml
blob: 75df44912ae06121cc0ac6265dc92d7ef53bc786 (plain) (blame)
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
on:
  push:
    tags:
      - '*'

jobs:
  publish:
    name: Publish for ${{ matrix.os }}
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        - os: ubuntu-latest
          artifact_name: t
          asset_name: t-linux-amd64
        - os: windows-latest
          artifact_name: t.exe
          asset_name: t-windows-amd64
        - os: macos-latest
          artifact_name: t
          asset_name: t-macos-amd64

    steps:
    - uses: hecrj/setup-rust-action@v1-release
      with:
        rust-version: stable
    - uses: actions/checkout@v2
    - name: Build
      run: cargo build --release --locked
    - name: UPX binary
      uses: actions-github/upx@master
      with:
        file: target/release/${{ matrix.artifact_name }}
        upx_args: '-9'
    - name: Upload binaries to release
      uses: svenstaro/upload-release-action@v1-release
      with:
        repo_token: ${{ secrets.TOKEN }}
        file: target/release/${{ matrix.artifact_name }}
        asset_name: ${{ matrix.asset_name }}
        tag: ${{ github.ref }}