-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (56 loc) · 1.99 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
# Terraform Provider release workflow.
name: Release
# This GitHub action creates a release when a tag that matches the pattern
# "v*" (e.g. v0.1.0) is created.
on:
workflow_dispatch:
inputs:
snapshot:
required: false
type: boolean
default: false
verbose:
required: false
type: boolean
default: false
push:
tags:
- 'v*'
# Releases need permissions to read and write the repository contents.
# GitHub considers creating releases and uploading assets as writing contents.
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
# Allow goreleaser to access older tag information.
fetch-depth: 0
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version-file: 'go.mod'
cache: true
- name: import key
env:
PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
run: "echo \"$PRIVATE_KEY\" | gpg --batch --trust-mode always --import"
- name: validate gpg keys
run: gpg -K
# DRAFT: skip signing prep
#- name: Import GPG key
# uses: crazy-max/ghaction-import-gpg@01dd5d3ca463c7f10f7f4f7b4f177225ac661ee4 # v6.1.0
# id: import_gpg
# with:
# gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
# passphrase: ${{ secrets.PASSPHRASE }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@9ed2f89a662bf1735a48bc8557fd212fa902bebf # v6.1.0
with:
args: release --clean ${{ inputs.snapshot && '--snapshot' || '' }} ${{ inputs.verbose && '--verbose' || '' }}
env:
# GitHub sets the GITHUB_TOKEN secret automatically.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PASSPHRASE: ${{ secrets.PASSPHRASE }}
# GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}