refactor: Remove annoying use of forRemoval since they won't be remov… #1179
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: publish-snapshot | |
| on: | |
| push: | |
| branches: | |
| - '[0-9]+.[0-9]+.[0-9]+' | |
| - '[0-9]+.[0-9]+' | |
| jobs: | |
| prepare-matrix: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| matrix: ${{ steps.set-matrix.outputs.result }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| - name: Preparing matrix | |
| id: set-matrix | |
| uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 | |
| with: | |
| script: | | |
| const fs = require('fs'); | |
| const gradleProperties = fs.readFileSync('gradle.properties', 'utf8'); | |
| const includeFabric = gradleProperties.match(/^(?!#)include_fabric\s*=\s*true/m); | |
| const includeForge = gradleProperties.match(/^(?!#)include_forge\s*=\s*true/m); | |
| const includeNeoForge = gradleProperties.match(/^(?!#)include_neoforge\s*=\s*true/m); | |
| const mavenSnapshots = gradleProperties.match(/^(?!#)maven_snapshots\s*=\s*(.+)/m); | |
| return { | |
| loader: ['common', includeFabric ? 'fabric' : false, includeForge ? 'forge' : false, includeNeoForge ? 'neoforge' : false].filter(Boolean), | |
| task: [mavenSnapshots ? 'publish' : 'build'] | |
| }; | |
| publish-snapshot: | |
| runs-on: ubuntu-latest | |
| environment: Snapshots | |
| strategy: | |
| matrix: ${{fromJson(needs.prepare-matrix.outputs.matrix)}} | |
| fail-fast: false | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| - name: Validate gradle wrapper | |
| uses: gradle/actions/wrapper-validation@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e | |
| - name: Setup JDK | |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 | |
| with: | |
| java-version: 21 | |
| distribution: temurin | |
| - name: Make gradle wrapper executable | |
| run: chmod +x ./gradlew | |
| - name: Extracting version from properties | |
| shell: bash | |
| run: echo "version=$(cat gradle.properties | grep -w "\bversion\s*=" | cut -d= -f2)" >> $GITHUB_OUTPUT | |
| id: extract-version | |
| - name: Bumping version | |
| uses: TwelveIterations/bump-version@86901cde5897b550e2e98fbe8962afc401c23c8f | |
| with: | |
| version: ${{ steps.extract-version.outputs.version }} | |
| bump: patch | |
| id: bump-version | |
| - name: Publish | |
| run: ./gradlew :${{ matrix.loader }}:${{ matrix.task }} '-Pversion=${{ steps.bump-version.outputs.version }}-SNAPSHOT' '-PmavenUsername=${{ secrets.MAVEN_USER }}' '-PmavenPassword=${{ secrets.MAVEN_PASSWORD }}' | |
| needs: prepare-matrix |