Automatically publish new tags to ansible-galaxy #3
Workflow file for this run
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: Ansible Galaxy | |
on: | |
# FIXME: | |
pull_request: {} | |
push: | |
tags: | |
- '*' | |
# For manual runs | |
workflow_dispatch: {} | |
jobs: | |
build: | |
name: Publish to Ansible Galaxy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: pip install ansible | |
- name: Deploy | |
run: ansible-galaxy import semrush ansible-role-clickhouse --token "${{ secrets.GALAXY_API_KEY }}" |