Skip to content

Commit

Permalink
ci: fix artifact file path (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
stepansergeevitch authored Oct 24, 2024
1 parent fa51ad4 commit d2f7f02
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 d2f7f02

Please sign in to comment.