We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a161c89 commit 4c11edeCopy full SHA for 4c11ede
.github/workflows/publish.yml
@@ -0,0 +1,22 @@
1
+
2
+name: Publish
3
4
+# Controls when the action will run.
5
+on:
6
+ push:
7
+ tags:
8
+ - "v[0-9]+.[0-9]+.[0-9]+"
9
+ workflow_dispatch:
10
11
+jobs:
12
+ galaxy:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ # Checks-out the repository under $GITHUB_WORKSPACE, so it's accessible to the job
17
+ - uses: actions/checkout@v2
18
19
+ - name: Build and publish a collection
20
+ uses: artis3n/ansible_galaxy_collection@v2
21
+ with:
22
+ api_key: '${{ secrets.GALAXY_API_KEY }}'
0 commit comments