-
Notifications
You must be signed in to change notification settings - Fork 6
53 lines (46 loc) · 1.4 KB
/
Generate-subset-app.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
on:
push:
branches:
- main
paths:
- cli/**.go
- '.github/workflows/Generate-subset-app.yaml'
workflow_dispatch:
name: Build and Upload hfsubset Executables
jobs:
generate:
name: Generate cross-platform builds
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Golang
uses: actions/setup-go@v4
with:
go-version-file: 'cli/go.mod'
- name: Package MacOS executable
working-directory: ./cli
run: |
GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 go build -o hfsubset
tar -czvf hfsubset-macos_amd64.tar.gz hfsubset
rm hfsubset
- name: Package Linux executable
working-directory: ./cli
run: |
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o hfsubset
tar -czvf hfsubset-linux_amd64.tar.gz hfsubset
rm hfsubset
- name: Package Windows executable
working-directory: ./cli
run: |
GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build -o hfsubset.exe
zip hfsubset-windows_amd64.zip hfsubset.exe
rm hfsubset.exe
- name: Upload packages
uses: ncipollo/release-action@v1
with:
tag: hfsubset-release-${{ github.run_number }}
commit: ${{ github.sha }}
artifacts: "cli/hfsubset-*"