From d01a3e12cc03c1c341b3c3120a25f4075a2c7735 Mon Sep 17 00:00:00 2001 From: potzplitz <127513690+potzplitz@users.noreply.github.com> Date: Tue, 5 Mar 2024 08:42:41 +0100 Subject: [PATCH 1/2] Update maven.yml test --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index fd99627..7d1cdb2 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -77,7 +77,7 @@ jobs: with: tag_name: v${{ needs.prepare.outputs.next_version }} release_name: ExtremeDemonList v${{ needs.prepare.outputs.next_version }} - body: ${{ steps.get_commit_info.outputs.COMMIT_DESC }} + body: ${{ steps.get_commit_info.outputs.COMMIT_MSG }} draft: false prerelease: false From 972b212e37ae14674238bb76c3b95605fc327ef4 Mon Sep 17 00:00:00 2001 From: potzplitz <127513690+potzplitz@users.noreply.github.com> Date: Tue, 5 Mar 2024 08:52:37 +0100 Subject: [PATCH 2/2] Update maven.yml --- .github/workflows/maven.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 7d1cdb2..09502fb 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -81,4 +81,15 @@ jobs: draft: false prerelease: false + - name: Upload Artifact as Release Asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: extracted-jar/ExtremeDemonList-0.0.1-SNAPSHOT-jar-with-dependencies.jar + asset_name: ExtremeDemonList-0.0.1-SNAPSHOT-jar-with-dependencies.jar + asset_content_type: application/ExtremeDemonList-0.0.1-SNAPSHOT-jar-with-dependencies.jar + + # Füge alle anderen Schritte deines aktuellen Workflows hier ein ...