-
Notifications
You must be signed in to change notification settings - Fork 4
88 lines (78 loc) · 2.87 KB
/
release-binaries.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: Compile into binaries
on:
release:
types: [created]
workflow_dispatch:
inputs:
release:
description: 'Release tag where to create the binaries (as SemVer vX.X.X)'
required: true
default: v0.1.0
permissions:
contents: write
packages: write
jobs:
releases-matrix:
name: Release Go Binary
runs-on: ubuntu-latest
strategy:
matrix:
# build and publish in parallel:
# linux/386, linux/amd64, linux/arm64, windows/386, windows/amd64, darwin/amd64, darwin/arm64
goos: [linux, windows, darwin]
goarch: ["386", amd64, arm64]
exclude:
- goarch: "386"
goos: darwin
- goarch: arm64
goos: windows
steps:
- id: read_tag
name: Read release tag name (mostly vx.x.x)
run: |
if [ "${{ github.event_name }}" = "release" ]; then
export TAG="${{ github.ref_name }}"
elif [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
export TAG="${{ inputs.release }}"
fi
echo "release_tag=${TAG}" >> "$GITHUB_OUTPUT"
- uses: actions/checkout@v3
with:
ref: ${{ steps.read_tag.outputs.release_tag }}
- name: Read Go version from go.mod
id: read_go_version
run: |
go_version_raw=$(grep "^go " go.mod | awk '{print $2}')
echo "go_version=${go_version_raw}" >> "$GITHUB_OUTPUT"
# Find the path for main.go file as recently golang project
# structure was finally standardized
- name: Determine main.go path
id: find_main_go
run: |
if [ -f "./main.go" ]; then
echo "main_go_path=./" >> "$GITHUB_OUTPUT"
else
echo "main_go_path=./cmd/" >> "$GITHUB_OUTPUT"
fi
# Omit the LICENSE file only for the very first release.
# This step is only to manage some technical debt we caused in the beginning.
- name: Find release extra files
id: find_release_extra_files
run: |
if [ -f "./LICENSE" ]; then
echo "release_extra_files=LICENSE README.md" >> "$GITHUB_OUTPUT"
else
echo "release_extra_files=README.md" >> "$GITHUB_OUTPUT"
fi
- uses: wangyoucao577/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
#goversion: "${{ steps.read_go_version.outputs.go_version }}"
goversion: "https://dl.google.com/go/go${{ steps.read_go_version.outputs.go_version }}.linux-amd64.tar.gz"
project_path: "${{ steps.find_main_go.outputs.main_go_path }}"
binary_name: "rabbit-stalker"
release_tag: ${{ inputs.release }}
overwrite: true
extra_files: "${{ steps.find_release_extra_files.outputs.release_extra_files }}"