mirror of
https://github.com/YatopiaMC/Yatopia.git
synced 2024-11-05 18:33:22 +01:00
24 lines
455 B
YAML
24 lines
455 B
YAML
name: CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build YAPFA
|
|
run: |
|
|
git submodule init
|
|
git submodule update --init --recursive
|
|
git config --global user.email "ci@github.com"
|
|
git config --global user.name "Github CI"
|
|
yapfaDir=`pwd`
|
|
cd Tuinity
|
|
./tuinity jar
|
|
cd $yapfaDir
|
|
./yapfa patch
|
|
./yapfa build
|