blob: 5dc5533e9a5a1a53c5115159eec170175d3732ed (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
name: Release
on:
push:
tags:
- v*
branches:
- v*
jobs:
release:
strategy:
matrix:
platform:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
bin: sentrum
name: sentrum-${{ github.ref_name }}-linux-x86_64
- os: ubuntu-latest
target: aarch64-unknown-linux-gnu
bin: sentrum
name: sentrum-${{ github.ref_name }}-linux-aarch64
- os: windows-latest
target: x86_64-pc-windows-msvc
bin: sentrum.exe
name: sentrum-${{ github.ref_name }}-windows-x86_64
- os: macos-latest
target: x86_64-apple-darwin
bin: sentrum
name: sentrum-${{ github.ref_name }}-darwin-x86_64
runs-on: ${{ matrix.platform.os }}
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Build binary
uses: houseabsolute/actions-rust-cross@v0
with:
target: ${{ matrix.platform.target }}
args: "--locked --release"
strip: true
- name: Package
shell: bash
run: |
mkdir ${{ matrix.platform.name }}
cp target/${{ matrix.platform.target }}/release/${{ matrix.platform.bin }} ${{ matrix.platform.name }}
cp sentrum.sample.toml ${{ matrix.platform.name }}
cp -r contrib ${{ matrix.platform.name }}
cp -r man ${{ matrix.platform.name }}
cp LICENSE.txt ${{ matrix.platform.name }}
cp README.md ${{ matrix.platform.name }}
if [[ "${{ matrix.platform.os }}" == "windows-latest" ]]
then
7z a ${{ matrix.platform.name }}.zip ${{ matrix.platform.name }}
else
tar czvf ${{ matrix.platform.name }}.tar.gz ${{ matrix.platform.name }}
fi
- name: Generate Changelog
run: utils/generate_changelog.sh > ${{ github.workspace }}-CHANGELOG.md
- name: Publish
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
body_path: ${{ github.workspace }}-CHANGELOG.md
draft: true
fail_on_unmatched_files: true
files: sentrum-*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|