ドナーマント読み込み成功したけどFPSが30になるので改良が必須 #789
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Java setup | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: 8 | |
check-latest: true | |
- uses: burrunan/gradle-cache-action@v1 | |
name: Build | |
with: | |
job-id: jdk8 | |
arguments: build --no-build-cache | |
gradle-version: wrapper | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: nightx | |
path: build/libs |