Skip to content

a galaxy namespace by any other capitalization still something something #2

a galaxy namespace by any other capitalization still something something

a galaxy namespace by any other capitalization still something something #2

Workflow file for this run

---
name: Release to Ansible Galaxy
on:
push:
tags:
- '*'
jobs:
release:
name: Import role to Ansible Galaxy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install ansible-core
run: pip install ansible-core
- name: Import role to Galaxy
run: >-
ansible-galaxy role import
--token "${{ secrets.GALAXY_API_KEY }}"
--branch "${{ github.ref_name }}"
"ANXS"
"${{ github.event.repository.name }}"
env:
ANSIBLE_GALAXY_SERVER_URL: https://galaxy.ansible.com