-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (41 loc) · 1022 Bytes
/
release.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
name: Deploy Go Binaries
on:
push:
tags:
- 'v*.*.*'
permissions:
contents: write
id-token: write
attestations: write
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
check-latest: true
go-version-file: 'go.mod'
- name: Build
run: make dist
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: bin-${{ github.ref_name }}
path: bin/*
- name: Generate artifact attestation
uses: actions/attest-build-provenance@v1
with:
subject-path: bin/*
- name: Upload Releases
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: bin/*
draft: true
prerelease: false