Bump urllib3 from 2.0.4 to 2.0.7 (#15) #13
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
--- | |
# This workflow requires a GALAXY_API_KEY secret present in the GitHub | |
# repository or organization. | |
# | |
# See: https://github.com/marketplace/actions/publish-ansible-role-to-galaxy | |
# See: https://github.com/ansible/galaxy/issues/46 | |
name: release | |
on: | |
push: | |
tags: | |
- "*" | |
defaults: | |
run: | |
working-directory: 'nephelaiio.docker' | |
jobs: | |
release: | |
name: release to ansible galaxy | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out the codebase | |
uses: actions/checkout@v3 | |
with: | |
path: 'nephelaiio.docker' | |
- name: set up python 3 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: install poetry | |
run: pip3 install poetry | |
- name: install pips | |
run: poetry install | |
- name: trigger a new import on galaxy | |
run: >- | |
poetry run ansible-galaxy role import --api-key ${{ secrets.GALAXY_API_KEY }} $(echo $GITHUB_REPOSITORY | cut -d/ -f1) $(echo $GITHUB_REPOSITORY | cut -d/ -f2) |