Update mod.json #148
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: Java CI | |
on: [push] | |
jobs: | |
buildJar: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Set up PATH | |
run: echo "${ANDROID_HOME}/build-tools/30.0.1" >> $GITHUB_PATH | |
- name: General information | |
run: | | |
java --version | |
d8 --version | |
- name: Build and dexify mod jar file | |
run: | | |
chmod +x gradlew | |
./gradlew main:deploy main:dex tools:proc | |
- name: Upload built mod jar file | |
uses: actions/[email protected] | |
with: | |
name: ProjectUnity (zipped) | |
path: main/build/libs/ProjectUnity.jar | |
- name: Make a tag name | |
if: github.ref == 'refs/heads/master' | |
run: | | |
echo "::set-output name=tag::$(date +%Y%m%d%H%M%S)" | |
id: tag_make | |
- name: Create blank release | |
if: github.ref == 'refs/heads/master' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | |
hub release create -m "Project Unity" "${{ steps.tag_make.outputs.tag }}" | |
- name: Add jar Release | |
uses: softprops/action-gh-release@v1 | |
if: github.ref == 'refs/heads/master' | |
with: | |
tag_name: ${{ steps.tag_make.outputs.tag }} | |
files: main/build/libs/ProjectUnity.jar |