Skip to content

Commit

Permalink
add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
artyorsh committed Aug 21, 2024
1 parent c85bcd8 commit e4813eb
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: "Release"

on:
pull_request:
branches:
- "master"
# push:
# tags:
# - '*'

jobs:

release:
name: "Release"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"

- name: "Publish to Ansible Galaxy"
run: |
ansible-galaxy collection publish --token ${{ secrets.GALAXY_API_KEY }} .

0 comments on commit e4813eb

Please sign in to comment.