diff --git a/.github/workflows/tag_deploy_rubygem.yml b/.github/workflows/tag_deploy_rubygem.yml index e9847724..bef80648 100644 --- a/.github/workflows/tag_deploy_rubygem.yml +++ b/.github/workflows/tag_deploy_rubygem.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 398d7a06..1250759e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/lib/simp/version.rb b/lib/simp/version.rb index a160c9d0..919dda61 100644 --- a/lib/simp/version.rb +++ b/lib/simp/version.rb @@ -1,4 +1,4 @@ module Simp; end module Simp::RspecPuppetFacts - VERSION = '3.8.2' + VERSION = '3.8.3' end