Skip to content

Commit

Permalink
feat: Update goreleaser version and arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
thefourcraft committed Jul 23, 2024
1 parent a6792e0 commit d87af74
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 26 deletions.
41 changes: 15 additions & 26 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,49 +1,38 @@
# This GitHub action can publish assets for release when a tag is created.
# Currently its setup to run on any tag that matches the pattern "v*" (ie. v0.1.0).
#
# This uses an action (hashicorp/ghaction-import-gpg) that assumes you set your
# private key in the `GPG_PRIVATE_KEY` secret and passphrase in the `PASSPHRASE`
# secret. If you would rather own your own GPG handling, please fork this action
# or use an alternative one for key handling.
#
# You will need to pass the `--batch` flag to `gpg` in your signing step
# in `goreleaser` to indicate this is being used in a non-interactive mode.
#
name: release

on:
push:
tags:
- 'v*'

jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
- name: Checkout
uses: actions/checkout@v4
-
name: Unshallow

- name: Unshallow
run: git fetch --prune --unshallow
-
name: Set up Go

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
-
name: Import GPG key

- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_KEY }}
passphrase: ${{ secrets.GPG_KEY_PASSPHRASE }}
-
name: Run GoReleaser

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: '~> v2'
args: release --clean
distribution: goreleaser
version: '~> v2'
args: release --clean
env:
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
# GitHub sets this automatically
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39 changes: 39 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
project_name: terraform-provider-ims-cloud
release:
github:
owner: your-github-username-or-org
name: terraform-provider-ims-cloud

builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
main: ./main.go
binary: terraform-provider-ims-cloud

archives:
- format: tar.gz
files:
- license
- README.md

checksum:
name_template: 'checksums.txt'
algorithm: sha256
extra_files:
- glob: dist/*.zip
- glob: dist/*.tar.gz

signs:
- artifacts: checksum
args:
- '--batch'
- '--pinentry-mode'
- loopback
env:
- GPG_FINGERPRINT
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"editor.wordBasedSuggestions": "off"
}

0 comments on commit d87af74

Please sign in to comment.