Skip to content

version 0.3.0

version 0.3.0 #14

Workflow file for this run

name: publish to galaxy
on:
release:
types: [published]
jobs:
release:
name: Release to galaxy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get the version name from the tags
run: echo "RELEASE_VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
- name: publish to ansible galaxy
uses: artis3n/ansible_galaxy_collection@v2
with:
api_key: '${{ secrets.galaxi_api_key }}'
galaxy_version: '${{ env.RELEASE_VERSION }}'