From 138f26ce576dc5392fa95a61d9b315c29fa84fe4 Mon Sep 17 00:00:00 2001 From: Baptiste Mille-Mathias Date: Thu, 24 Dec 2020 14:21:41 +0100 Subject: [PATCH] Add github action to push release to galaxy --- .github/workflows/galaxy.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/galaxy.yml diff --git a/.github/workflows/galaxy.yml b/.github/workflows/galaxy.yml new file mode 100644 index 0000000..c50d50a --- /dev/null +++ b/.github/workflows/galaxy.yml @@ -0,0 +1,16 @@ +--- +name: Release to Ansible Galaxy + +on: + push: + tags: + - '*' + +jobs: + release: + runs-on: ubuntu-latest + steps: + - name: galaxy + uses: robertdebock/galaxy-action@1.0.3 + with: + galaxy_api_key: ${{ secrets.galaxy_api_key }}