Compare commits
No commits in common. "5168f8b3468cffca8c6a19cd5c6186afc735c4e6" and "0d8699c420f7d61e50f13076e3307139a92e5ead" have entirely different histories.
5168f8b346
...
0d8699c420
1 changed files with 6 additions and 6 deletions
|
@ -8,12 +8,12 @@ jobs:
|
|||
build-and-store-artifact:
|
||||
runs-on: archLinux
|
||||
steps:
|
||||
- run: git clone --depth=1 --no-single-branch https://git.seodisparate.com/stephenseo/TurnBasedMinecraftMod.git TurnBasedMinecraftMod
|
||||
- run: cd TurnBasedMinecraftMod && git checkout master
|
||||
- run: cd TurnBasedMinecraftMod && sed -i '/org.gradle.jvmargs/s/Xmx[0-9]\+m/Xmx700m/' gradle.properties
|
||||
- run: cd TurnBasedMinecraftMod && ./gradlew --console=plain build
|
||||
- run: cd TurnBasedMinecraftMod/build/libs && find . -type f -exec sha256sum '{}' ';' -exec bash -c 'sha256sum {} >> sha256sums.txt' ';' && java --version >> javaVersion.txt && javac --version >> javaVersion.txt
|
||||
- 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 && 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: TBMM_Forge_jars_sha256sums
|
||||
path: TurnBasedMinecraftMod/build/libs/
|
||||
path: TBMM/build/libs/
|
||||
|
|
Loading…
Reference in a new issue