Skip to content

Commit

Permalink
Actions release
Browse files Browse the repository at this point in the history
Nick Gray committed Aug 17, 2021
1 parent 260b89e commit b887ebe
Showing 8 changed files with 53 additions and 155 deletions.
10 changes: 0 additions & 10 deletions .github/dependabot.yml

This file was deleted.

41 changes: 0 additions & 41 deletions .github/gorelease.yaml

This file was deleted.

1 change: 0 additions & 1 deletion .github/release-drafter.yml

This file was deleted.

42 changes: 0 additions & 42 deletions .github/workflows/cicd-build.yml

This file was deleted.

37 changes: 0 additions & 37 deletions .github/workflows/gorelease.yaml

This file was deleted.

19 changes: 0 additions & 19 deletions .github/workflows/release-drafter.yml

This file was deleted.

49 changes: 49 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# 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
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.14
-
name: Import GPG key
id: import_gpg
uses: hashicorp/ghaction-import-gpg@v2.1.0
env:
# These secrets will need to be configured for the repository:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
PASSPHRASE: ${{ secrets.PASSPHRASE }}
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2.7.0
with:
version: latest
args: release --rm-dist
env:
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
# GitHub sets this automatically
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9 changes: 4 additions & 5 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@ checksum:
signs:
- artifacts: checksum
args:
# if you are using this is a GitHub action or some other automated pipeline, you
# if you are using this in a GitHub action or some other automated pipeline, you
# need to pass the batch flag to indicate its not interactive.
- "--batch"
- "--local-user"
@@ -48,8 +48,7 @@ signs:
- "--detach-sign"
- "${artifact}"
release:
# Visit your project's GitHub Releases page to publish this release.
draft: false
# If you want to manually examine the release before its live, uncomment this line:
draft: true
changelog:
skip: true

skip: true

0 comments on commit b887ebe

Please sign in to comment.