Fail if mirror issues (#50) #10
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: Ansible Galaxy Publish | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Add release, date and commit hash to version in galaxy.yml | |
run: > | |
ts=$(TZ=UTC0 git show ${{ github.sha }} --no-patch --format=%cd --date=format-local:'%Y%m%d%H%M') | |
sha=$(echo "${{ github.sha }}" | cut -c1-7); | |
rel=$(grep ^Release ansible-collection-redhatci-ocp.spec | grep -Po '\d+\.'); | |
sed -i -r "s/^(version: .*)$/&-${rel}${ts}git${sha}/" galaxy.yml; | |
grep ^version galaxy.yml | |
- name: Ansible Publish to Galaxy | |
uses: ansible/[email protected] | |
with: | |
api_key: ${{ secrets.ANSIBLE_GALAXY_TOKEN }} |