21 lines
415 B
YAML
21 lines
415 B
YAML
|
---
|
||
|
name: publish
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
publish:
|
||
|
name: Publish to galaxy
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v4
|
||
|
- name: Publish
|
||
|
uses: ednxzu/galaxy-import-role@v2
|
||
|
with:
|
||
|
galaxy-api-key: ${{ secrets.GALAXY_API_TOKEN }}
|
||
|
repository-owner: ednxzu
|
||
|
repository-name: deploy_keepalived
|