fix: Designer screen using the game's original font (Minecraft) heigh… #2667
This file contains hidden or 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: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Java setup | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: "zulu" | |
| java-version: 8 | |
| cache: "gradle" | |
| - name: Set outputs | |
| id: vars | |
| run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" | |
| - name: Build | |
| run: chmod +x ./gradlew && ./gradlew setupCiWorkspace && ./gradlew build | |
| - name: Rename build artifacts | |
| run: mv build/libs/FDPClient-*.jar build/libs/FDPClient-build.jar | |
| - name: Upload build artifacts | |
| uses: actions/upload-artifact@v3 | |
| with: | |
| name: FDPClient | |
| path: build/libs/FDPClient-build.jar |