Skip to content

Commit

Permalink
fix: use temp directory during CI release process
Browse files Browse the repository at this point in the history
  • Loading branch information
mrparkers committed Aug 26, 2020
1 parent a1aef96 commit 5aa0506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: |
releaseDate=$(date '+%B-%-d-%Y' | tr '[:upper:]' '[:lower:]')
releaseVersion=$(echo ${{ steps.get_tag_name.outputs.TAG }} | tr -d '.')
tmp=$(mktemp)
tmp=$(mktemp -d)
echo "[Release Notes](https://github.com/mrparkers/terraform-provider-keycloak/blob/master/CHANGELOG.md#${releaseVersion}-${releaseDate})" > ${tmp}/release-notes.md
echo ::set-output name=NOTES::${tmp}/release-notes.md
- name: GoReleaser
Expand Down

0 comments on commit 5aa0506

Please sign in to comment.