Skip to content

Commit

Permalink
split name
Browse files Browse the repository at this point in the history
  • Loading branch information
jburel committed Jan 25, 2024
1 parent 6996cd5 commit 8f372ba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ jobs:
- name: Read the role name
id: role-name
run: |
name=$(grep 'role_name' meta/main.yml | sed -r 's/^[^:]*:(.*)$/\1/' | tr -d '[:space:]') # noqa
name=$(grep 'role_name' meta/main.yml)
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 8f372ba

Please sign in to comment.