3 Commits

Author SHA1 Message Date
Keith Solomon
4600a52a1c testing action #release
Some checks failed
Add release / Create release (push) Has been cancelled
2025-03-25 11:32:25 -05:00
Keith Solomon
d74e575bd7 🐞 fix: Update tag retrieval action in release workflow #release
Some checks failed
Add release / Create release (push) Has been cancelled
2025-03-25 11:25:42 -05:00
Keith Solomon
73c89016b3 🐞 fix: Add step to retrieve and use tag in release workflow #release 2025-03-25 11:20:47 -05:00

View File

@@ -17,17 +17,16 @@ jobs:
id: trunkver
uses: https://github.com/crftd-tech/trunkver@main
- name: Print trunkver
env:
TRUNKVER: ${{ steps.trunkver.outputs.trunkver }}
run: |
echo "$TRUNKVER"
- name: Get tag
uses: https://github.com/little-core-labs/get-git-tag@v3.0.1
id: tagName
- name: Use tag
run: echo ${{ steps.tagName.outputs }}
- name: Create release
id: create_release
uses: https://github.com/comnoco/create-release-action@v2
env:
TRUNKVER: ${{ steps.trunkver.outputs.trunkver }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.trunkver.outputs.trunkver }}