Skip to content

Commit

Permalink
fix artifact file path
Browse files Browse the repository at this point in the history
  • Loading branch information
stepansergeevitch committed Oct 24, 2024
1 parent fa51ad4 commit 9551ee0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: target/${{ steps.build.outputs.jar-name }}
file: target/uberjar/${{ steps.build.outputs.jar-name }}
tags: true
draft: false

- name: Upload resulting jar file as artifact
uses: actions/upload-artifact@v4
with:
name: ${{ steps.build.outputs.jar-name }}
path: target/${{ steps.build.outputs.jar-name }}
path: target/uberjar/${{ steps.build.outputs.jar-name }}

0 comments on commit 9551ee0

Please sign in to comment.