-
Notifications
You must be signed in to change notification settings - Fork 2
46 lines (42 loc) · 1.2 KB
/
build.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
name: Build
run-name: ${{ github.ref_name }} - Build
on:
push:
tags:
- "*"
jobs:
build:
strategy:
# Failure in one platform build won't impact the others
fail-fast: false
matrix:
build:
- name: 'resticity-Linux-${{ github.ref_name }}_amd64'
platform: 'linux/amd64'
os: 'ubuntu-latest'
- name: 'Resticity-Windows-Portable-${{ github.ref_name }}_amd64.exe'
platform: 'windows/amd64'
os: 'windows-latest'
- name: 'Resticity-${{ github.ref_name }}_amd64'
platform: 'darwin/amd64'
os: 'macos-latest'
runs-on: ${{ matrix.build.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Build wails
uses: dAppServer/[email protected]
id: build
with:
build-name: ${{ matrix.build.name }}
build-platform: ${{ matrix.build.platform }}
package: true
go-version: '1.21'
release:
runs-on: ubuntu-latest
steps:
- uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}