blob: cfa05c25614bf76dd8ba39afc9fd0534875cffd0 (
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
41
42
43
44
45
46
47
48
49
50
51
|
name: Release
on:
push:
tags:
- v*
jobs:
release:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: ubuntu-latest
bin: sentrum
name: sentrum-linux-x86_64.tar.gz
- os: windows-latest
bin: sentrum.exe
name: sentrum-windows-x86_64.zip
- os: macOS-latest
bin: sentrum
name: sentrum-darwin-x86_64.tar.gz
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
- run: cargo build --release
- name: Package
shell: bash
run: |
strip target/release/${{ matrix.bin }}
cd target/release
if [[ "${{ matrix.os }}" == "windows-latest" ]]
then
7z a ../../${{ matrix.name }} ${{ matrix.bin }}
else
tar czvf ../../${{ matrix.name }} ${{ matrix.bin }}
fi
cd -
- name: Publish
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
draft: true
files: |
sentrum-*
sentrum.sample.toml
contrib/sentrum.service
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|