Skip to content

Commit

Permalink
fix(ci): fixes release ci action stage
Browse files Browse the repository at this point in the history
Fixes an issue with the release stage. Not really a provider fix, but I need to push a new tag.
  • Loading branch information
tlkamp committed Dec 30, 2023
1 parent 2d53fcf commit ce6ab96
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
name: release
on:
push:
tags: [v*]
tags: '*'
workflow_dispatch:
jobs:
goreleaser:
Expand All @@ -29,11 +29,11 @@ jobs:
cache: true
- name: Import GPG key
id: import_gpg
uses: hashicorp/ghaction-import-gpg@v2.1.0
uses: crazy-max/ghaction-import-gpg@v6
env:
# These secrets will need to be configured for the repository:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
PASSPHRASE: ${{ secrets.PASSPHRASE }}
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3.0.0
with:
Expand Down

0 comments on commit ce6ab96

Please sign in to comment.