Skip to content

fix: INFRA-764 Fixed problems with health detection after successful … #2

fix: INFRA-764 Fixed problems with health detection after successful …

fix: INFRA-764 Fixed problems with health detection after successful … #2

Workflow file for this run

#Source: https://github.com/hashicorp/terraform-provider-scaffolding/blob/main/.github/workflows/release.yml
name: release
on:
push:
tags:
- 'v*'
jobs:
goreleaser:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.23
- name: Import GPG key
id: import_gpg
uses: Ferlab-Ste-Justine/ghaction-import-gpg@main
env:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
PASSPHRASE: ${{ secrets.PASSPHRASE }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2.7.0
with:
version: 1.10.3
args: release --rm-dist
env:
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}