Issue #201: Use proper repository variable in actions workflow syntax.

This commit is contained in:
Jeff Geerling 2020-11-04 21:56:06 -06:00
parent 2f1b4546a4
commit a020f94e7d

View file

@ -38,5 +38,5 @@ jobs:
run: >-
ansible-galaxy role import
--api-key ${{ secrets.GALAXY_API_KEY }}
$(echo $GITHUB_REPOSITORY | cut -d/ -f1)
$(echo $GITHUB_REPOSITORY | cut -d/ -f2)
$(echo ${{ github.repository }} | cut -d/ -f1)
$(echo ${{ github.repository }} | cut -d/ -f2)