Skip to content

Commit

Permalink
utilize github actions/checkout@v2 in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
darkwizard242 committed Feb 4, 2022
1 parent 84a01ef commit 835dd41
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
steps:

- name: Checkout source code
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
path: 'darkwizard242.crictl'
path: 'darkwizard242.awless'

- name: Set up Python 3.10.0
uses: actions/setup-python@v2
Expand All @@ -31,4 +31,5 @@ jobs:
pip3 install -U pip wheel ansible
- name: Import to Ansible Galaxy.
working-directory: 'darkwizard242.awless'
run: ansible-galaxy role import --api-key ${{ secrets.GALAXY_API_KEY }} ${{ github.repository_owner }} $(echo ${{ github.repository }} | sed 's/.*\///')

0 comments on commit 835dd41

Please sign in to comment.