fix to previous solar compressor commit #460
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 applicable branches on push or pull request" | |
| # Controls when the action will run. Triggers the workflow on push or pull request | |
| # events for the branches listed | |
| on: | |
| push: | |
| branches: [ "1.*" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| if: | | |
| !contains(github.event.head_commit.message, '[ci skip]') | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - name: Setup Gradle and Validate Wrapper | |
| uses: gradle/actions/setup-gradle@v4 | |
| with: | |
| cache-read-only: false | |
| - name: Remove any generated assets/data | |
| run: rm -rf ./src/generated | |
| - name: Generate assets & data | |
| run: ./gradlew runData --no-daemon | |
| - name: Validate assets | |
| run: test -d ./src/generated -a -d ./src/generated/resources/.cache | |
| - name: Set up mod metadata | |
| id: mod_meta | |
| run: | | |
| echo mc_version=$(grep ^mc_version= ./gradle.properties | cut -d= -f2) >> $GITHUB_OUTPUT | |
| - name: Build JAR and Publish to Modmaven | |
| run: ./gradlew build publishMavenPublicationToModmavenRepository --no-daemon | |
| env: | |
| MODMAVEN_USER: ${{ secrets.MODMAVEN_USER }} | |
| MODMAVEN_PASSWORD: ${{ secrets.MODMAVEN_PASSWORD }} | |
| - name: Discord notification | |
| uses: Ilshidur/action-discord@master | |
| env: | |
| DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} | |
| if: | |
| env.DISCORD_WEBHOOK != null | |
| with: | |
| args: 'Build complete for project {{ EVENT_PAYLOAD.repository.full_name }} (Minecraft ${{ steps.mod_meta.outputs.mc_version}}): ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}.' |