Skip to content

Commit

Permalink
Add doc header, enforce 60 char column limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Palmer-Richez committed Aug 2, 2024
1 parent 370958d commit f7a025b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
- name: Deploy collection to galaxy
on:
release:
Expand All @@ -17,7 +18,10 @@
run: ansible-galaxy collection build

- name: Get expected version string
shell: VERSION=$(echo "${{ github.ref_name }}" | echo "v0.0.1" | sed -e 's/v\(.*\)/\1/'
shell: VERSION=$(echo ${{ github.ref_name }} | sed -e 's/v\(.*\)/\1/'

- name: Publish to Galaxy
run: ansible-galaxy collection publish tofugarden-secureboot-$VERSION.tar.gz --token ${{ secrets.GALAXY_API_KEY }}
run: |
ansible-galaxy collection publish \
tofugarden-secureboot-$VERSION.tar.gz \
--token ${{ secrets.GALAXY_API_KEY }}

0 comments on commit f7a025b

Please sign in to comment.