Skip to content

Commit

Permalink
adding action to publish releases
Browse files Browse the repository at this point in the history
  • Loading branch information
elreydetoda committed Dec 29, 2023
1 parent 423529d commit d387cd9
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Ansible Galaxy

on:
push:
branches:
- main
- master
tags:
- '*'

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Deploy the collection
uses: artis3n/ansible_galaxy_collection@v2
with:
api_key: ${{ secrets.GALAXY_API_KEY }}

0 comments on commit d387cd9

Please sign in to comment.