Merge pull request #350 from twister716/patch-1 #482
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: Java CI - Build on Push | |
| on: | |
| push: | |
| branches: [ main, dev, "1.*" ] | |
| workflow_dispatch: | |
| inputs: | |
| skip_maven_publish: | |
| description: 'Skip Maven publishing' | |
| required: true | |
| default: 'false' | |
| jobs: | |
| build: | |
| if: | | |
| !contains(github.event.head_commit.message, '[ciskip]') | |
| uses: FTBTeam/mods-meta/.github/workflows/standard-release.yml@main | |
| with: | |
| curse-publish-task: "" | |
| maven-snapshots: true | |
| java-version: 21 | |
| secrets: | |
| ftb-maven-token: ${{ secrets.FTB_MAVEN_TOKEN }} | |
| saps-token: ${{ secrets.SAPS_TOKEN }} |