Skip to content

Commit

Permalink
Fix GHA release workflow (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
silug authored Oct 11, 2023
1 parent 8709d56 commit 2ecbd75
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tag_deploy_rubygem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,10 @@ jobs:
IS_PRERELEASE: ${{ steps.tag-check.outputs.prerelease }}
run: |
echo "${RELEASE_MESSAGE}" > /tmp/.commit-msg.txt
args=(--file /tmp/.commit-msg.txt)
args=(-F /tmp/.commit-msg.txt)
[[ $IS_PRERELEASE == yes ]] && args+=(--prerelease)
hub release create ${args[@]} "$TARGET_TAG"
gh release create ${args[@]} "$TARGET_TAG"
deploy-rubygem:
name: Deploy RubyGem Release
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2023-10-11 / 3.8.3 - Fix GHA release workflow
- Fix GHA release workflow

## 2023-10-11 / 3.8.2 - Add missing augeasprovider_grub_version fact
- Add missing `augeasprovider_grub_version` fact to amazon-2, oraclelinux-7,
and oraclelinux-8 fact sets
Expand Down
2 changes: 1 addition & 1 deletion lib/simp/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Simp; end
module Simp::RspecPuppetFacts
VERSION = '3.8.2'
VERSION = '3.8.3'
end

0 comments on commit 2ecbd75

Please sign in to comment.