Skip to content

Commit

Permalink
Merge pull request #24 from smutel/FixReleaseScript
Browse files Browse the repository at this point in the history
Fix release script
  • Loading branch information
smutel authored Nov 25, 2020
2 parents 4c1e80d + af8fb17 commit a9fbe37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ jobs:
passphrase: ${{ secrets.PASSPHRASE }}

- name: Generate CHANGELOG for this version
run: ./utils/getChangelogRelease CHANGELOG.md $TAG > RELEASE_CHANGELOG.md
run: ./utils/getChangelogRelease CHANGELOG.md $TAG > /tmp/RELEASE_CHANGELOG.md
env:
TAG: ${{ github.event.release.tag_name }}

- name: Run GoReleaser
uses: goreleaser/[email protected]
with:
version: latest
args: release --rm-dist --release-notes=RELEASE_CHANGELOG.md
args: release --rm-dist --release-notes=/tmp/RELEASE_CHANGELOG.md
env:
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit a9fbe37

Please sign in to comment.