Skip to content

🔧 chore: Update pure prompt URLs to version 1.23.0 (#6) #20

🔧 chore: Update pure prompt URLs to version 1.23.0 (#6)

🔧 chore: Update pure prompt URLs to version 1.23.0 (#6) #20

Workflow file for this run

name: Ansible CI
on:
push:
branches: [ master ]
tags: [ 'v*' ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
distro: [
ubuntu2004, ubuntu2204, ubuntu2404,
debian10, debian11, debian12,
rockylinux9,
]
steps:
-
uses: actions/checkout@v4
-
name: Download test shim.
run: |
wget -O "${PWD}/tests/test-ansible-role.sh" https://raw.githubusercontent.com/esolitos/gists/master/shell/test-ansible-role.sh
chmod +x "${PWD}/tests/test-ansible-role.sh"
-
name: Run test
run: ${PWD}/tests/test-ansible-role.sh -d ${{ matrix.distro }}
publish:
# Run this job only if the push event is triggered by a tag.
if: github.event_name == 'push' && github.ref_type == 'tag' && startsWith(github.ref, 'refs/tags/v')
needs:
- test
runs-on: ubuntu-latest
environment:
name: Galaxy
url: https://galaxy.ansible.com/ui/standalone/roles/esolitos/zsh/
env:
ansible-galaxy-key: ${{ secrets.ANSIBLE_GALAXY_KEY }}
steps:
-
uses: actions/checkout@v4
-
name: Publish Ansible role to Galaxy
uses: robertdebock/[email protected]
with:
galaxy_api_key: ${{ env.ansible-galaxy-key }}