Skip to content

Commit

Permalink
Fix GHA (#66)
Browse files Browse the repository at this point in the history
Use `gh` instead of `hub` in GHA (see actions/runner-images#8362)
  • Loading branch information
silug authored Oct 10, 2023
1 parent 6cffef4 commit fc8aab0
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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ jobs:
IS_PRERELASE: ${{ 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_PRERELASE == yes ]] && args+=(--prerelease)
hub release create ${args[@]} "$TARGET_TAG"
gh release create ${args[@]} "$TARGET_TAG"
build-and-attach-rpms:
name: Trigger RPM release
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* Tue Oct 10 2023 Steven Pritchard <[email protected]> - 0.9.1
- Use `gh` instead of `hub` in GHA (see https://github.com/actions/runner-images/issues/8362)

* Fri Oct 06 2023 Steven Pritchard <[email protected]> - 0.9.0
- [puppetsync] Updates for Puppet 8
- These updates may include the following:
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simp-useradd",
"version": "0.9.0",
"version": "0.9.1",
"author": "SIMP Team",
"summary": "A SIMP puppet module for managing settings regarding users and user creation",
"license": "Apache-2.0",
Expand Down

0 comments on commit fc8aab0

Please sign in to comment.