Package error in Converge #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Release | |
'on': | |
push: | |
tags: | |
- '*' | |
defaults: | |
run: | |
working-directory: 'supertarto.glpi' | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the codebase. | |
uses: actions/checkout@v4 | |
with: | |
path: 'supertarto.glpi' | |
- name: Trigger a new import on Galaxy. | |
run: >- | |
ansible-galaxy role import --api-key ${{ secrets.GALAXY_API_KEY }} | |
$(echo ${{ github.repository }} | cut -d/ -f1) $(echo ${{ github.repository }} | cut -d/ -f2) |