From e0b86ee5e4b37c021dec43186a75b4010379f2f9 Mon Sep 17 00:00:00 2001 From: AngrySoundTech Date: Wed, 13 Mar 2024 16:23:20 -0400 Subject: [PATCH] Add tag name to publish --- .github/workflows/publish_container.yaml | 5 +++++ .github/workflows/publish_gradle_project.yaml | 1 + 2 files changed, 6 insertions(+) diff --git a/.github/workflows/publish_container.yaml b/.github/workflows/publish_container.yaml index dda6ca7c9..b414cfafb 100644 --- a/.github/workflows/publish_container.yaml +++ b/.github/workflows/publish_container.yaml @@ -91,6 +91,11 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} + - name: 🗃️ Create/Update Release + uses: softprops/action-gh-release@v1 + with: + tag_name: ${{ needs.determine_values.outputs.category }}/${{ needs.determine_values.outputs.project }}/${{ needs.determine_values.outputs.version }} + - name: 🐳 Build and push uses: docker/build-push-action@v5 with: diff --git a/.github/workflows/publish_gradle_project.yaml b/.github/workflows/publish_gradle_project.yaml index 56291de50..25b5db652 100644 --- a/.github/workflows/publish_gradle_project.yaml +++ b/.github/workflows/publish_gradle_project.yaml @@ -89,6 +89,7 @@ jobs: - name: 🗃️ Create/Update Release uses: softprops/action-gh-release@v1 with: + tag_name: ${{ needs.determine_values.outputs.category }}/${{ needs.determine_values.outputs.project }}/${{ needs.determine_values.outputs.version }} files: '${{needs.determine_values.outputs.category}}/${{needs.determine_values.outputs.project}}/build/libs/*' - name: 🐘 Gradle Publish