We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48b3a3c commit 8952465Copy full SHA for 8952465
1 file changed
.github/workflows/release.yml
@@ -49,6 +49,13 @@ jobs:
49
branch: main
50
unprotect_reviews: true
51
52
+ - name: Publish Collection on Ansible Galaxy
53
+ uses: artis3n/ansible_galaxy_collection@v2
54
+ with:
55
+ api_key: '${{ secrets.GALAXY_API_KEY }}'
56
+ build: false
57
+ publish: true
58
+
59
- name: Push changes to repository
60
run: git push origin && git push --tags
61
@@ -59,13 +66,6 @@ jobs:
66
body: ${{ steps.release-changelog.outputs.content }}
67
token: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }}
68
62
- - name: Publish Collection on Ansible Galaxy
63
- uses: artis3n/ansible_galaxy_collection@v2
64
- with:
65
- api_key: '${{ secrets.GALAXY_API_KEY }}'
- build: false
- publish: true
-
69
clean_changelog:
70
if: github.event.pull_request.merged == true && needs.changelog.outputs.release-type == 'no-release'
71
needs: [ changelog ]
0 commit comments