Skip to content

Commit

Permalink
Fix bad versions in galaxy.yml, fix version extract in wf.
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Palmer-Richez committed Aug 1, 2024
1 parent cd5c484 commit 2a9b0eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
run: ansible-galaxy collection build

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

- name: Publish to Galaxy
run: ansible-galaxy collection publish tofugarden-secureboot-$VERSION.tar.gz --token ${{ secrets.GALAXY_API_KEY }}
4 changes: 2 additions & 2 deletions galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ tags:
- uki

dependencies:
community.crypto: "9.2.0 <10.0.0"
community.general: "2.21.1 <3.0.0"
community.crypto: ">=9.2.0,<10.0.0"
community.general: ">=2.21.1,<3.0.0"

repository: https://github.com/crichez/tofugarden.secureboot.git

Expand Down

0 comments on commit 2a9b0eb

Please sign in to comment.