Fix #581: Allow any machine progress bar sizes through KubeJS (not ju… #2837
Workflow file for this run
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 master | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - id: var | |
| name: Setup variables | |
| run: echo ::set-output name=commit_hash::${GITHUB_SHA:0:7} | |
| - uses: actions/checkout@v2 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 17 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Build with Gradle | |
| run: ./gradlew build | |
| env: | |
| MI_VERSION: 0.0.0-git-${{ steps.var.outputs.commit_hash }} | |
| - name: Gametest Server | |
| run: | | |
| ./gradlew runGameTestServer | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Modern Industrialization ${{ steps.var.outputs.commit_hash }} | |
| path: build/libs |