Merge pull request #4 from sscheib/ft-fix_ansible_lint #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: 'Publish latest release to Ansible Galaxy' | |
on: | |
push: | |
branches: | |
- 'main' | |
workflow_dispatch: {} | |
jobs: | |
build: | |
name: 'Publish to Ansible Galaxy' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: 'checkout' | |
uses: 'actions/checkout@v2' | |
- name: 'galaxy' | |
uses: 'robertdebock/galaxy-action@1.2.0' | |
with: | |
galaxy_api_key: '${{ secrets.galaxy_api_key }}' | |
git_branch: 'main' | |
... |