Mirror von
https://github.com/Moulberry/AxiomPaperPlugin.git
synchronisiert 2024-11-08 17:40:04 +01:00
github actions
Dieser Commit ist enthalten in:
Ursprung
63376a0bae
Commit
726c4085aa
37
.github/workflows/build.yml
vendored
Normale Datei
37
.github/workflows/build.yml
vendored
Normale Datei
@ -0,0 +1,37 @@
|
||||
name: Build
|
||||
on: [ push, pull_request ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
# Only run on PRs if the source branch is on someone else's repo
|
||||
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
java: [ 16 ]
|
||||
fail-fast: true
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: JDK ${{ matrix.java }}
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
java-version: ${{ matrix.java }}
|
||||
distribution: 'adopt'
|
||||
- name: Build paperweight
|
||||
run: |
|
||||
git clone https://github.com/PaperMC/paperweight.git
|
||||
cd paperweight
|
||||
git switch userdev
|
||||
./gradlew publishToMavenLocal --stacktrace
|
||||
- name: Build Paper
|
||||
run: |
|
||||
git clone https://github.com/PaperMC/Paper.git
|
||||
cd Paper
|
||||
git config --global user.email "no-reply@github.com"
|
||||
git config --global user.name "Github Actions"
|
||||
git switch userdev
|
||||
./gradlew applyPatches --stacktrace
|
||||
./gradlew build --stacktrace
|
||||
./gradlew publishDevBundlePublicationToMavenLocal -PpublishDevBundle --stacktrace
|
||||
- name: Build
|
||||
run: ./gradlew build --stacktrace
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren