diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-08-30 12:43:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-30 12:43:48 +0200 |
commit | 46f167d2c0a583b6c6c68fc4edd8aff73a282a56 (patch) | |
tree | 71d8c74edf5ca4ecc91b695067b7c27f066fe0a2 /.github/workflows/build.yml | |
parent | e41d4e8e025a7f98aa1798d6698be2849dd91050 (diff) | |
download | skyhanni-46f167d2c0a583b6c6c68fc4edd8aff73a282a56.tar.gz skyhanni-46f167d2c0a583b6c6c68fc4edd8aff73a282a56.tar.bz2 skyhanni-46f167d2c0a583b6c6c68fc4edd8aff73a282a56.zip |
Fix: Github Actions Artifact path (#2429)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8275ac8b0..7c75f0eef 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,7 @@ jobs: name: Upload development build with: name: "Development Build" - path: versions/1.8.9/build/libs/*.jar + path: build/libs/*.jar - name: Test with Gradle run: ./gradlew test - uses: actions/upload-artifact@v3 |