20 lines
499 B
YAML
20 lines
499 B
YAML
---
|
|
|
|
name: update galaxy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
update_role:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Action Ansible Galaxy Release ${{ github.ref_name }}
|
|
uses: ansible-actions/ansible-galaxy-action@main
|
|
with:
|
|
galaxy_api_key: ${{ secrets.GALAXY_API_KEY }}
|