mirror of
https://github.com/ysoftdevs/terraform-provider-bitbucketserver.git
synced 2026-04-26 10:38:27 +02:00
ci(release): Replace release workflow with version from scaffolding
I should have ched this first. The correct version is always at https://github.com/hashicorp/terraform-provider-scaffolding-framework/blob/main/.github/workflows/release.yml
This commit is contained in:
33
.github/workflows/tag.yml
vendored
33
.github/workflows/tag.yml
vendored
@@ -1,10 +1,15 @@
|
|||||||
|
# Terraform Provider release workflow.
|
||||||
name: Release
|
name: Release
|
||||||
|
|
||||||
|
# This GitHub action creates a release when a tag that matches the pattern
|
||||||
|
# "v*" (e.g. v0.1.0) is created.
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- "v*"
|
- 'v*'
|
||||||
|
|
||||||
|
# Releases need permissions to read and write the repository contents.
|
||||||
|
# GitHub considers creating releases and uploading assets as writing contents.
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|
||||||
@@ -12,29 +17,25 @@ jobs:
|
|||||||
goreleaser:
|
goreleaser:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
with:
|
||||||
|
# Allow goreleaser to access older tag information.
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Set up Go
|
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
|
||||||
uses: actions/setup-go@v5
|
|
||||||
with:
|
with:
|
||||||
go-version: '1.21'
|
go-version-file: 'go.mod'
|
||||||
|
cache: true
|
||||||
- name: Import GPG key
|
- name: Import GPG key
|
||||||
|
uses: crazy-max/ghaction-import-gpg@cb9bde2e2525e640591a934b1fd28eef1dcaf5e5 # v6.2.0
|
||||||
id: import_gpg
|
id: import_gpg
|
||||||
uses: crazy-max/ghaction-import-gpg@v3
|
|
||||||
with:
|
with:
|
||||||
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
|
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||||
passphrase: ${{ secrets.GPG_PASSPHRASE }}
|
passphrase: ${{ secrets.PASSPHRASE }}
|
||||||
- name: Run GoReleaser
|
- name: Run GoReleaser
|
||||||
uses: goreleaser/goreleaser-action@v6
|
uses: goreleaser/goreleaser-action@90a3faa9d0182683851fbfa97ca1a2cb983bfca3 # v6.2.1
|
||||||
with:
|
with:
|
||||||
version: latest
|
args: release --clean
|
||||||
args: release --rm-dist
|
|
||||||
env:
|
env:
|
||||||
|
# GitHub sets the GITHUB_TOKEN secret automatically.
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
|
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
|
||||||
- name: Upload assets
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
path: dist/*
|
|
||||||
|
|||||||
Reference in New Issue
Block a user