Skip to content

meta: support Ansible version 2.17 (#36) #19

meta: support Ansible version 2.17 (#36)

meta: support Ansible version 2.17 (#36) #19

---
name: Publish collection
"on":
push:
tags:
- 'v*'
jobs:
publish-collection:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Install dependencies
run: |
python3 -m pip install ansible-core~=2.12.3
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
- name: Publish collection
run: ansible-playbook -i localhost, -e tag='${{ steps.get_version.outputs.VERSION }}' .github/publish-collection.yml
env:
ANSIBLE_GALAXY_TOKEN: ${{ secrets.ANSIBLE_GALAXY_TOKEN }}