From da821f608a6e6fd897d907aad253c06f56c7eef2 Mon Sep 17 00:00:00 2001 From: Thomas Muller Date: Fri, 26 Jul 2024 11:56:39 +0200 Subject: [PATCH] Fix gh workflow --- .github/workflows/build-and-release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 036dbdba..27658fdc 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -65,6 +65,7 @@ jobs: with: name: app-jar path: target/*.jar + if-no-files-found: error publish-docs: needs: build-application @@ -110,6 +111,7 @@ jobs: uses: actions/download-artifact@v2 with: name: app-jar + path: ./ - name: Debug Output run: | @@ -136,6 +138,5 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./app-jar/*.jar - asset_name: '*.jar' + asset_path: ./*.jar asset_content_type: application/java-archive \ No newline at end of file