Attempts to fix broken native #24
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 mod jar | |
| on: | |
| [workflow_dispatch, push] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| - name: Set up JDK 21 | |
| uses: actions/[email protected] | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| - uses: gradle/actions/[email protected] | |
| with: | |
| gradle-version: 9.0.0 | |
| name: Set up Gradle | |
| - name: Add permission | |
| run: chmod +x ./gradlew | |
| - name: Execute Gradle build | |
| run: ./gradlew build | |
| - name: Upload a Build Artifact | |
| uses: actions/[email protected] | |
| with: | |
| path: build/libs |