Merge pull request #4 from laura-ig1/laura/1.19.2-upstreaming #32
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: [pull_request, push] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| # Use these Java versions | |
| java: [ | |
| 21, # Current Java LTS | |
| ] | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: checkout repository | |
| uses: actions/checkout@v4 | |
| - name: validate gradle wrapper | |
| uses: gradle/wrapper-validation-action@v2 | |
| - name: setup jdk ${{ matrix.java }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| distribution: 'microsoft' | |
| - name: make gradle wrapper executable | |
| run: chmod +x ./gradlew | |
| - name: build | |
| run: ./gradlew build | |
| - name: capture build artifacts | |
| if: ${{ matrix.java == '21' }} # Only upload artifacts built from latest java | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Artifacts | |
| path: build/libs/ | |
| - name: Read values from gradle properties file | |
| id: read_property | |
| uses: christian-draeger/read-properties@1.1.1 | |
| with: | |
| path: "./gradle.properties" | |
| properties: "mod_version minecraft_version archives_base_name" | |
| - name: Upload artifacts to discord | |
| uses: tsickert/discord-webhook@v6.0.0 | |
| with: | |
| webhook-url: ${{ secrets.WEBHOOK_URL }} | |
| content: "Git hub action build. **THIS MAY NOT BE A FUNCTIONAL BUILD**\nMod: ${{steps.read_property.outputs.archives_base_name}}\nMCVersion: ${{steps.read_property.outputs.minecraft_version}}\nMod version: ${{steps.read_property.outputs.mod_version}}" | |
| filename: build/libs/${{ steps.read_property.outputs.archives_base_name }}-${{steps.read_property.outputs.mod_version}}.jar |