-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (38 loc) · 906 Bytes
/
binaries.yml
File metadata and controls
46 lines (38 loc) · 906 Bytes
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: binaries
"on":
push:
branches:
- main
tags:
- v*
jobs:
binaries:
runs-on: ubuntu-latest
steps:
- name: Checkout source
id: source
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Setup golang
id: golang
uses: actions/setup-go@v5
with:
go-version: ^1.23.0
- name: Run generate
id: generate
run: make generate
- name: Run release
id: release
run: make release
- name: Show artifacts
id: show
run: ls -lsa dist/
- name: Upload release
id: upload
if: startsWith(github.ref, 'refs/tags/')
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.GIT_TOKEN }}
body: ${{ steps.changelog.outputs.generated }}
artifacts: dist/*
...