From 4620ff7621892a2712dae99e6d06906ee021aecc Mon Sep 17 00:00:00 2001 From: soer3n Date: Tue, 26 Oct 2021 17:14:47 +0200 Subject: [PATCH] add galaxy release step to workflows --- .github/workflows/galaxy.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/galaxy.yaml diff --git a/.github/workflows/galaxy.yaml b/.github/workflows/galaxy.yaml new file mode 100644 index 0000000..6404dd8 --- /dev/null +++ b/.github/workflows/galaxy.yaml @@ -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/galaxy-action@1.1.0 + with: + galaxy_api_key: ${{ secrets.GALAXY_API_KEY }}