Skip to content

Commit

Permalink
fix name parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
jburel authored Jan 29, 2024
1 parent 15bfc29 commit cfa3f0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
id: role-name
run: |
name=$(grep 'role_name' meta/main.yml)
name=$name | sed -r 's/^[^:]*:(.*)$/\1/' | tr -d '[:space:]'
name=$(echo $name | sed -r 's/^[^:]*:(.*)$/\1/' | tr -d '[:space:]')
echo "rolename=$name" >> "$GITHUB_OUTPUT"
- name: Publish to Galaxy
uses: ome/action-ansible-galaxy-publish@main
Expand Down

0 comments on commit cfa3f0e

Please sign in to comment.