Skip to content

Commit

Permalink
Fix gh workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-muller666 committed Jul 26, 2024
1 parent 306e514 commit 878979f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,19 @@ jobs:
with:
name: app-jar

- name: Debug Output
run: |
echo "Version Tag from build-application job: ${{needs.build-application.outputs.VERSION_TAG}}"
echo "Project version from build-application job: ${{needs.build-application.outputs.PROJECT_VERSION}}"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ needs.build-application.outputs.version_info.outputs.VERSION_TAG }}
release_name: Release ${{ needs.build-application.outputs.version_info.outputs.PROJECT_VERSION }}
tag_name: ${{ needs.build-application.outputs.VERSION_TAG }}
release_name: Release ${{ needs.build-application.outputs.PROJECT_VERSION }}
body: |
Test release
draft: false
Expand Down

0 comments on commit 878979f

Please sign in to comment.