25 lines
452 B
YAML
25 lines
452 B
YAML
---
|
|
name: Galaxy-NG Roles Import
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
|
|
jobs:
|
|
build:
|
|
name: Galaxy Role Importer
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: "Checkout git repo"
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
fetch-depth: 0
|
|
|
|
- name: "Release on galaxy"
|
|
uses: ansible-actions/ansible-galaxy-action@v1.2.0
|
|
with:
|
|
galaxy_api_key: ${{ secrets.galaxy_api_key }}
|