-
-
Notifications
You must be signed in to change notification settings - Fork 706
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,8 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
CombedKnight4
|
||
- uses: actions/cache@v1 | ||
- uses: actions/checkout@v2 | ||
- uses: actions/cache@v2 | ||
with: | ||
path: ~/.m2/repository | ||
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | ||
|
@@ -24,31 +24,31 @@ jobs: | |
- name: Build with Maven | ||
run: mvn -B package | ||
- name: Archive artifacts (Geyser Standalone) | ||
uses: actions/upload-artifact@v1 | ||
uses: actions/upload-artifact@v2 | ||
if: success() | ||
with: | ||
name: Geyser Standalone | ||
path: bootstrap/standalone/target/Geyser.jar | ||
- name: Archive artifacts (Geyser Bukkit) | ||
uses: actions/upload-artifact@v1 | ||
uses: actions/upload-artifact@v2 | ||
if: success() | ||
with: | ||
name: Geyser Bukkit | ||
path: bootstrap/bukkit/target/Geyser-Bukkit.jar | ||
- name: Archive artifacts (Geyser BungeeCord) | ||
uses: actions/upload-artifact@v1 | ||
uses: actions/upload-artifact@v2 | ||
if: success() | ||
with: | ||
name: Geyser BungeeCord | ||
path: bootstrap/bungeecord/target/Geyser-BungeeCord.jar | ||
- name: Archive artifacts (Geyser Sponge) | ||
uses: actions/upload-artifact@v1 | ||
uses: actions/upload-artifact@v2 | ||
if: success() | ||
with: | ||
name: Geyser Sponge | ||
path: bootstrap/sponge/target/Geyser-Sponge.jar | ||
- name: Archive artifacts (Geyser Velocity) | ||
uses: actions/upload-artifact@v1 | ||
uses: actions/upload-artifact@v2 | ||
if: success() | ||
with: | ||
name: Geyser Velocity | ||
|
Have u trieded doing @v2 for both instead of @v1 and @v2