Skip to content

Commit

Permalink
Fix automatic build not linking the correct jar
Browse files Browse the repository at this point in the history
  • Loading branch information
Tofpu committed Jan 29, 2023
1 parent 0c07e91 commit 0a3c3bf
Showing 1 changed file with 4 additions and 4 deletions.
@@ -1,7 +1,7 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: Artifact Builder
name: Automatic Build

on:
push
Expand All @@ -16,14 +16,14 @@ jobs:
with:
java-version: '8'
distribution: 'adopt'

- name: Build with Gradle
uses: gradle/gradle-build-action@937999e9cc2425eddc7fd62d1053baf041147db7
uses: gradle/gradle-build-action@v2
with:
arguments: shadowJar

- name: Uploading
uses: actions/upload-artifact@v2
with:
name: SpeedBridge-2
path: ${{ github.workspace }}/build/libs/*.jar
path: ${{ github.workspace }}/speedbridge2-spigot-plugin/build/libs/*.jar

0 comments on commit 0a3c3bf

Please sign in to comment.