2023-06-19 00:05:58 +02:00
|
|
|
# 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:
|
|
|
|
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:
|
2024-10-24 08:58:23 +02:00
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2023-06-19 00:05:58 +02:00
|
|
|
with:
|
|
|
|
# Allow goreleaser to access older tag information.
|
|
|
|
fetch-depth: 0
|
2025-01-21 21:03:20 +01:00
|
|
|
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
|
2023-06-19 00:05:58 +02:00
|
|
|
with:
|
|
|
|
go-version-file: 'go.mod'
|
|
|
|
cache: true
|
|
|
|
- name: Import GPG key
|
2024-11-04 18:42:10 +01:00
|
|
|
uses: crazy-max/ghaction-import-gpg@cb9bde2e2525e640591a934b1fd28eef1dcaf5e5 # v6.2.0
|
2023-06-19 00:05:58 +02:00
|
|
|
id: import_gpg
|
|
|
|
with:
|
|
|
|
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
|
|
|
passphrase: ${{ secrets.PASSPHRASE }}
|
|
|
|
- name: Run GoReleaser
|
2024-11-09 22:47:23 +01:00
|
|
|
uses: goreleaser/goreleaser-action@9ed2f89a662bf1735a48bc8557fd212fa902bebf # v6.1.0
|
2023-06-19 00:05:58 +02:00
|
|
|
with:
|
|
|
|
args: release --clean
|
|
|
|
env:
|
|
|
|
# GitHub sets the GITHUB_TOKEN secret automatically.
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
|