23 lines
324 B
YAML
23 lines
324 B
YAML
|
---
|
||
|
#
|
||
|
# Ansible managed
|
||
|
#
|
||
|
|
||
|
name: Release to Ansible Galaxy
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- '*'
|
||
|
schedule:
|
||
|
- cron: '2 2 2 * *'
|
||
|
|
||
|
jobs:
|
||
|
release:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: galaxy
|
||
|
uses: robertdebock/galaxy-action@1.0.1
|
||
|
with:
|
||
|
galaxy_api_key: ${{ secrets.galaxy_api_key }}
|