Files
ansible-aur/.github/workflows/galaxy.yml
kewl d2f3fb5802 Update galaxy.yml
fixed deployment and improve version check
2025-08-22 20:41:09 +01:00

41 lines
1.1 KiB
YAML

---
name: Build and Publish Collection to Ansible Galaxy
'on':
release:
types: [ published ]
workflow_dispatch:
defaults:
run:
working-directory: collections/ansible_collections/kewlfft/aur
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout git repo
uses: actions/checkout@v5
with:
path: collections/ansible_collections/kewlfft/aur
- name: Verify version in galaxy.yml matches release tag
id: version
run: |
tag_version="${GITHUB_REF##*/}" # strip refs/tags/
file_version=$(awk '/^version:/ {print $2}' galaxy.yml)
if [ "$file_version" != "$tag_version" ]; then
echo "❌ galaxy.yml version ($file_version) does not match tag ($tag_version)"
exit 1
fi
echo "version=$tag_version" >> "$GITHUB_OUTPUT"
- name: Build collection
run: ansible-galaxy collection build
- name: Publish collection
run: ansible-galaxy collection publish "kewlfft-aur-${{ steps.version.outputs.version }}.tar.gz" \
--api-key "${{ secrets.ANSIBLE_GALAXY_API_KEY }}"