-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (49 loc) · 1.52 KB
/
release.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
# Ref: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
name: release
on:
workflow_dispatch:
push:
tags: ['v*']
permissions:
contents: write
id-token: write
packages: write
pull-requests: read
jobs:
release:
runs-on: ubuntu-latest
env:
flags: ""
steps:
- name: "Preamble"
run: |
whoami
echo github ref $GITHUB_REF
echo workflow $GITHUB_WORKFLOW
echo home $HOME
echo event name $GITHUB_EVENT_NAME
echo workspace $GITHUB_WORKSPACE
df -h
sudo DEBIAN_FRONTEND=noninteractive apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common ca-certificates gnupg-agent curl build-essential make
# Ref: https://github.com/actions/checkout
- name: "Checkout Source"
uses: actions/checkout@v4
with:
fetch-depth: 0
# Ref: https://github.com/actions/setup-go
- name: "Install Go"
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: "Compute Release Flags"
if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
run: echo "flags=--snapshot" >> $GITHUB_ENV
# Ref: https://github.com/goreleaser/goreleaser-action
- name: "Release"
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --clean ${{ env.flags }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}