Add configuration option for RDP resize method #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.galaxy_api_key }} | |
galaxy_version: '${{ env.RELEASE_VERSION }}' |