Skip to content

Comment out rockylinux8 from CI workflow. #3

Comment out rockylinux8 from CI workflow.

Comment out rockylinux8 from CI workflow. #3

Workflow file for this run

---
name: Ansible Galaxy Import
on:
push:
tags:
- v*
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v4
- name: Set up Python 3.
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install Ansible.
run: pip3 install ansible-core
- name: Trigger a new import on Galaxy.
run: >-
ansible-galaxy role import --api-key ${{ secrets.ANSIBLE_GALAXY_TOKEN }}
$(echo ${{ github.repository }} | cut -d/ -f1) $(echo ${{ github.repository }} | cut -d/ -f2)