Skip to content

Commit

Permalink
chore: add release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
shmileee committed Aug 31, 2021
1 parent dbee845 commit cdabf8e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Release
'on':
push:
tags:
- '*'

jobs:

release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Check out the codebase
uses: actions/checkout@v2

- name: Publish to Galaxy
uses: robertdebock/galaxy-action@1.1.1
with:
galaxy_api_key: ${{ secrets.ANSIBLE_GALAXY_TOKEN }}

0 comments on commit cdabf8e

Please sign in to comment.