Skip to content

Commit

Permalink
add galaxy release step to workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
soer3n committed Oct 26, 2021
1 parent 71cebd1 commit 4620ff7
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/galaxy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Release

on:
push:
tags:
- '*'

defaults:
run:
working-directory: 't_systems_mms.cniplugins'

jobs:

release:
name: ansible galaxy
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v2
with:
path: 't_systems_mms.cniplugins'

- name: galaxy
uses: robertdebock/[email protected]
with:
galaxy_api_key: ${{ secrets.GALAXY_API_KEY }}

0 comments on commit 4620ff7

Please sign in to comment.