-
Notifications
You must be signed in to change notification settings - Fork 5
89 lines (87 loc) · 2.36 KB
/
go.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: Go
on:
push:
# branches:
# - main
tags:
- v1.*.*
pull_request:
branches:
- main
jobs:
goreleaser:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
-
name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.18
-
name: Build Dependencies (Linux)
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update && sudo apt-get install gcc-aarch64-linux-gnu
-
if: matrix.platform == 'ubuntu-latest'
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --rm-dist -f .goreleaser.linux.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: What is SDK (macOS)
# if: matrix.platform == 'macos-latest'
# run: |
# xcrun --sdk macosx --show-sdk-path
# -
# if: matrix.platform == 'macos-latest'
# name: Run GoReleaser
# uses: goreleaser/goreleaser-action@v5
# with:
# distribution: goreleaser
# version: latest
# args: release --rm-dist -f hack/goreleaser/darwin.yml
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-
if: matrix.platform == 'windows-latest'
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --rm-dist -f .goreleaser.windows.yml
env:
GITHUB_TOKEN: ${{ secrets.GH_SCOOP }}
-
if: matrix.platform == 'ubuntu-latest'
name: Upload assets (Linux)
uses: actions/upload-artifact@v3
with:
name: apfs_linux
path: dist/*
# -
# if: matrix.platform == 'macos-latest'
# name: Upload assets
# uses: actions/upload-artifact@v3
# with:
# name: apfs_macos
# path: dist/*
-
if: matrix.platform == 'windows-latest'
name: Upload assets (Windows)
uses: actions/upload-artifact@v3
with:
name: apfs_windows
path: dist/*