From e440d9006589326d1dbf34fe90858391822893f4 Mon Sep 17 00:00:00 2001 From: Michiel Papenhove Date: Tue, 3 Oct 2023 14:18:00 +0200 Subject: [PATCH] Adds action to push to Galaxy --- .github/workflows/push-to-ansible-galaxy.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/push-to-ansible-galaxy.yml diff --git a/.github/workflows/push-to-ansible-galaxy.yml b/.github/workflows/push-to-ansible-galaxy.yml new file mode 100644 index 0000000..1af6e8c --- /dev/null +++ b/.github/workflows/push-to-ansible-galaxy.yml @@ -0,0 +1,19 @@ + +--- +name: push-to-ansible-galaxy + +on: + push: + tags: + - "v*" + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v2 + - name: galaxy + uses: robertdebock/galaxy-action@1.2.0 + with: + galaxy_api_key: ${{ secrets.galaxy_api_key }} \ No newline at end of file