Adding Ansible collection

This commit is contained in:
Alex Stephen 2019-10-31 12:31:22 -07:00 committed by GitHub
parent 8b084fde7c
commit 1a17b21997
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

25
.github/workflows/pythonpublish.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Upload release to Galaxy
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ansible
- name: Build and publish
env:
ANSIBLE_GALAXY_API_KEY: ${{ secrets.ANSIBLE_GALAXY_API_KEY }}
run: |
ansible-galaxy collection build .
ansible-galaxy collection publish *.tar.gz --api-key $ANSIBLE_GALAXY_API_KEY