-
Notifications
You must be signed in to change notification settings - Fork 2
47 lines (40 loc) · 1.28 KB
/
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
40
41
42
43
44
45
46
47
name: Release
on:
push:
tags:
- "v*"
jobs:
publish:
name: Publish for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
asset_name: swr-release-linux-${{ github.ref_name }}.tar.xz
- os: macos-latest
asset_name: swr-release-macos-${{ github.ref_name }}.tar.xz
- os: windows-latest
asset_name: swr-release-win64-${{ github.ref_name }}.zip
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: make dependencies
- name: Build Windows
if: startsWith(matrix.os, 'windows')
run: |
make all VERSION=${{ github.ref_name }}
tar -czf ${{ matrix.asset_name }} data docs bin LICENSE
- name: Build BSD
if: startsWith(matrix.os, 'ubuntu') || startsWith(matrix.os, 'macos')
run: |
make all VERSION=${{ github.ref_name }}
tar -cJf ${{ matrix.asset_name }} data docs bin LICENSE
- name: Publish Server Archive
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ matrix.asset_name }}
asset_name: ${{ matrix.asset_name }}
tag: ${{ github.ref }}