Experimenting with Team and Freezer to manipulate mob's AI #29
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] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Gradle | |
uses: null2264/actions/gradle-setup@6712f98d592b126629afd27dc4870c93b53426b4 | |
with: | |
java: 17 | |
- name: Build with Gradle | |
run: | | |
./gradlew build | |
- name: Archive build results | |
run: tar -I zstd -cf build.tar.zst build/libs | |
- name: Upload build folder | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-artifacts | |
path: build.tar.zst | |
if-no-files-found: error | |
retention-days: 3 |