Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ on:
- master

jobs:
Build:
build:
strategy:
matrix:
jdkversion: [ 21 ]
runs-on: ubuntu-latest
outputs:
artifact_id: ${{ steps.upload.outputs.artifact-id }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
Expand All @@ -23,12 +25,13 @@ jobs:
run: mvn -V -B clean package --file pom.xml
- name: Upload Artifacts
uses: actions/upload-artifact@v7
id: upload
with:
path: target/AuthMe-*-FORK-Universal.jar
archive: false
runtime-test:
name: Plugin Runtime Test
needs: [Build]
needs: [build]
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -48,4 +51,4 @@ jobs:
with:
server-version: ${{ matrix.mcVersion }}
java-version: ${{ matrix.javaVersion }}
artifact-name: Download
artifact-ids: ${{needs.build.outputs.artifact_id}}
Loading