mirror of
https://github.com/YatopiaMC/Yatopia.git
synced 2024-12-29 12:38:01 +01:00
very cool fix that is very useful and does some thonking on it's own
This commit is contained in:
parent
8f0f00816d
commit
796dfb7a23
31
.github/workflows/build.yml
vendored
31
.github/workflows/build.yml
vendored
@ -18,25 +18,30 @@ jobs:
|
|||||||
uses: actions/setup-java@v1.3.0
|
uses: actions/setup-java@v1.3.0
|
||||||
with:
|
with:
|
||||||
java-version: ${{ matrix.java }}
|
java-version: ${{ matrix.java }}
|
||||||
|
- name: Pull Maven Cache
|
||||||
- uses: actions/cache@v1.1.2
|
uses: actions/cache@v1.1.2
|
||||||
|
id: maven-cache
|
||||||
with:
|
with:
|
||||||
path: ~/.m2/repository
|
path: ~/.m2/repository
|
||||||
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
|
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
|
||||||
restore-keys: ${{ runner.os }}-maven-
|
restore-keys: ${{ runner.os }}-maven-
|
||||||
|
- name: Setup YAPFA Project
|
||||||
|
run: |
|
||||||
|
git submodule update --init --recursive -f
|
||||||
|
git config --global user.email "ci@github.com"
|
||||||
|
git config --global user.name "Github CI"
|
||||||
|
sudo chmod -R -f 777 scripts
|
||||||
|
- name: Build Maven Depends
|
||||||
|
if: steps.maven-cache.outputs.cache-hit != 'true'
|
||||||
|
run: |
|
||||||
|
cd Tuinity
|
||||||
|
cd Paper
|
||||||
|
./paper patch
|
||||||
|
cd ..//
|
||||||
|
./tuinity jar
|
||||||
|
cd ..//
|
||||||
- name: Build YAPFA
|
- name: Build YAPFA
|
||||||
run: |
|
run: |
|
||||||
git submodule update --init --recursive -f
|
|
||||||
git config --global user.email "ci@github.com"
|
|
||||||
git config --global user.name "Github CI"
|
|
||||||
sudo chmod -R -f 777 scripts
|
|
||||||
cd Tuinity
|
|
||||||
cd paper
|
|
||||||
./paper patch
|
|
||||||
cd ..//
|
|
||||||
./tuinity jar
|
|
||||||
cd ..//
|
|
||||||
./yapfa paperclip
|
./yapfa paperclip
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v2-preview
|
uses: actions/upload-artifact@v2-preview
|
||||||
|
Loading…
Reference in New Issue
Block a user