Release #65
Workflow file for this run
This file contains 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
--- | |
name: Release | |
on: | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+*' | |
permissions: | |
contents: write | |
jobs: | |
go-version: | |
runs-on: custom-linux-xl | |
outputs: | |
version: ${{ steps.go-version.outputs.version }} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- id: go-version | |
run: echo "version=$(cat ./.go-version)" >>${GITHUB_OUTPUT} | |
release-notes: | |
runs-on: custom-linux-xl | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Generate Release Notes | |
run: sed -n -e "1{/# /d;}" -e "2{/^$/d;}" -e "/# $(git describe --abbrev=0 --exclude="$(git describe --abbrev=0 --match='v*.*.*' --tags)" --match='v*.*.*' --tags | tr -d v)/q;p" CHANGELOG.md > release-notes.txt | |
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: release-notes | |
path: release-notes.txt | |
retention-days: 1 | |
terraform-provider-release: | |
name: 'Terraform Provider Release' | |
needs: [go-version, release-notes] | |
uses: hashicorp/ghaction-terraform-provider-release/.github/workflows/hashicorp.yml@393dac4dd208c749b1622323f9f0e8d26a6f26cc # v4.0.1 | |
secrets: | |
hc-releases-github-token: '${{ secrets.HASHI_RELEASES_GITHUB_TOKEN }}' | |
hc-releases-host-staging: '${{ secrets.HC_RELEASES_HOST_STAGING }}' | |
hc-releases-host-prod: '${{ secrets.HC_RELEASES_HOST_PROD }}' | |
hc-releases-key-prod: '${{ secrets.HC_RELEASES_KEY_PROD }}' | |
hc-releases-key-staging: '${{ secrets.HC_RELEASES_KEY_STAGING }}' | |
hc-releases-terraform-registry-sync-token: '${{ secrets.TF_PROVIDER_RELEASE_TERRAFORM_REGISTRY_SYNC_TOKEN }}' | |
setup-signore-github-token: '${{ secrets.HASHI_SIGNORE_GITHUB_TOKEN }}' | |
signore-client-id: '${{ secrets.SIGNORE_CLIENT_ID }}' | |
signore-client-secret: '${{ secrets.SIGNORE_CLIENT_SECRET }}' | |
with: | |
goreleaser-release-args: --timeout 2h --verbose --parallelism 4 | |
hc-releases-aws-role-duration-seconds: 7200 | |
release-notes: true | |
setup-go-version: '${{ needs.go-version.outputs.version }}' | |
# Product Version (e.g. v1.2.3 or github.ref_name) | |
product-version: '${{ github.ref_name }}' |