Update plugin com.gradleup.nmcp.aggregation to v1.2.1 (#3371) #5555
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: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| if: github.repository_owner == 'IntellectualSites' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v5 | |
| - name: Validate Gradle Wrapper | |
| uses: gradle/actions/wrapper-validation@v5 | |
| - name: Setup Java | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| cache: gradle | |
| java-version: 21 | |
| - name: Build | |
| run: ./gradlew build | |
| - name: Determine release status | |
| if: ${{ runner.os == 'Linux' }} | |
| run: | | |
| if [ "$(./gradlew properties | awk '/^version:/ { print $2; }' | grep '\-SNAPSHOT')" ]; then | |
| echo "STATUS=snapshot" >> $GITHUB_ENV | |
| else | |
| echo "STATUS=release" >> $GITHUB_ENV | |
| fi | |
| - name: Publish Release | |
| if: ${{ runner.os == 'Linux' && env.STATUS == 'release' && github.event_name == 'push' && github.ref == 'refs/heads/main'}} | |
| run: ./gradlew publishAggregationToCentralPortal | |
| env: | |
| ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.CENTRAL_USERNAME }} | |
| ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.CENTRAL_PASSWORD }} | |
| ORG_GRADLE_PROJECT_signingKey: ${{ secrets.SIGNING_KEY }} | |
| ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.SIGNING_PASSWORD }} | |
| - name: Publish Snapshot | |
| if: ${{ runner.os == 'Linux' && env.STATUS != 'release' && github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
| run: ./gradlew publishAggregationToCentralPortalSnapshots | |
| env: | |
| ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.CENTRAL_USERNAME }} | |
| ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.CENTRAL_PASSWORD }} | |
| - name: Publish core javadoc | |
| if: ${{ runner.os == 'Linux' && env.STATUS == 'release' && github.event_name == 'push' && github.ref == 'refs/heads/main'}} | |
| uses: cpina/github-action-push-to-another-repository@main | |
| env: | |
| SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} | |
| with: | |
| source-directory: 'worldedit-core/build/docs/javadoc' | |
| destination-github-username: 'IntellectualSites' | |
| destination-repository-name: 'fastasyncworldedit-javadocs' | |
| user-email: ${{ secrets.USER_EMAIL }} | |
| target-branch: main | |
| target-directory: worldedit-core | |
| - name: Publish bukkit javadoc | |
| if: ${{ runner.os == 'Linux' && env.STATUS == 'release' && github.event_name == 'push' && github.ref == 'refs/heads/main'}} | |
| uses: cpina/github-action-push-to-another-repository@main | |
| env: | |
| SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} | |
| with: | |
| source-directory: 'worldedit-bukkit/build/docs/javadoc' | |
| destination-github-username: 'IntellectualSites' | |
| destination-repository-name: 'fastasyncworldedit-javadocs' | |
| user-email: ${{ secrets.USER_EMAIL }} | |
| target-branch: main | |
| target-directory: worldedit-bukkit | |
| - name: Archive Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: FastAsyncWorldEdit-Bukkit-SNAPSHOT | |
| path: worldedit-bukkit/build/libs/FastAsyncWorldEdit-*.jar | |
| - name: Publish to Modrinth | |
| if: ${{ runner.os == 'Linux' && env.STATUS == 'release' && github.event_name == 'push' && github.ref == 'refs/heads/main'}} | |
| run: ./gradlew publishMods | |
| env: | |
| MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} |