feat: add global_concurrency_limit_id support to deployments (#592) #101
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Terraform Provider release workflow. | |
name: Release to Registry | |
on: | |
push: | |
tags: | |
- 'v*' | |
permissions: {} | |
jobs: | |
goreleaser: | |
permissions: | |
# GitHub considers creating releases and uploading assets as writing contents. | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
with: | |
fetch-depth: 0 | |
# This action installs go and caches downloaded modules, so we favor | |
# this over using the `mise-action` to install Go. | |
- name: Set up Golang | |
uses: actions/setup-go@v6 | |
with: | |
go-version-file: 'go.mod' | |
- name: Import GPG key | |
uses: crazy-max/ghaction-import-gpg@v6 | |
id: import_gpg | |
with: | |
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
passphrase: ${{ secrets.PASSPHRASE }} | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v6 | |
with: | |
args: release --clean | |
env: | |
# GitHub sets the GITHUB_TOKEN secret automatically. | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }} |