-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (57 loc) · 1.83 KB
/
publish.yaml
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
name: Build & Publish WsjtxUtils.Searchlight
on:
release:
types: [published]
jobs:
release:
name: Release
strategy:
matrix:
kind: ['linux', 'windows', 'macOS']
include:
- kind: linux
os: ubuntu-latest
target: linux-x64
- kind: windows
os: windows-latest
target: win-x64
- kind: macOS
os: macos-latest
target: osx-x64
- kind: arm64
os: self-hosted
target: linux-arm64
runs-on: ${{ matrix.os }}
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
steps:
- name: Checkout searchlight
uses: actions/checkout@v3
- name: Setup dotnet
uses: actions/setup-dotnet@v3.0.3
with:
dotnet-version: '6.0.x'
include-prerelease: true
- name: Build searchlight
shell: bash
run: |
# Define some variables for things we need
tag=$(git describe --tags --abbrev=0)
release_name="wsjtxutils-searchlight-$tag-${{ matrix.target }}"
# Build everything
dotnet publish src/WsjtxUtils.Searchlight.Console/WsjtxUtils.Searchlight.Console.csproj --framework net6.0 --runtime "${{ matrix.target }}" --no-self-contained --version-suffix $tag -c Release -o "$release_name"
# Pack files
if [ "${{ matrix.target }}" == "win-x64" ]; then
7z a -tzip "${release_name}.zip" "./${release_name}/*"
else
tar czvf "${release_name}.tar.gz" "$release_name"
fi
# Delete output directory
rm -r "$release_name"
- name: Publish
uses: softprops/action-gh-release@v1
with:
files: "wsjtxutils-searchlight*"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}