Update action to use less ram
All checks were successful
Build TurnBasedMC and store Artifact / build-and-store-artifact (push) Successful in 54s
All checks were successful
Build TurnBasedMC and store Artifact / build-and-store-artifact (push) Successful in 54s
This commit is contained in:
parent
e5beef7c98
commit
8ee3c99846
1 changed files with 3 additions and 2 deletions
|
@ -10,8 +10,9 @@ jobs:
|
|||
steps:
|
||||
- run: git clone --depth=1 --no-single-branch https://git.seodisparate.com/stephenseo/TurnBasedMinecraftMod.git TBMM
|
||||
- run: cd TBMM && git checkout master
|
||||
- run: cd TBMM && ./gradlew build
|
||||
- run: cd TBMM/build/libs && java --version >> javaVersion.txt && javac --version >> javaVersion.txt && find . -type f -exec bash -c 'sha256sum {} >> sha256sums.txt' ';'
|
||||
- run: cd TBMM && sed -i '/org.gradle.jvmargs/s/Xmx[0-9]\+m/Xmx700m/' gradle.properties
|
||||
- run: cd TBMM && ./gradlew --console=plain build
|
||||
- run: cd TBMM/build/libs && find . -type f -exec bash -c 'sha256sum {} >> sha256sums.txt' ';' && java --version >> javaVersion.txt && javac --version >> javaVersion.txt
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: built-jars-and-metadata
|
||||
|
|
Loading…
Reference in a new issue