chore(deps): Update dependency net.dv8tion:JDA to v6.4.1 #789
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 cloud-discord | |
| on: | |
| push: | |
| branches: [ "**" ] | |
| tags-ignore: [ "**" ] | |
| pull_request: | |
| release: | |
| types: [ published ] | |
| jobs: | |
| build: | |
| # Only run on PRs if the source branch is on someone else's repo | |
| if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 21 | |
| - uses: gradle/actions/setup-gradle@v5 | |
| with: | |
| # allow master and *-dev branches to write caches (default is only master/main) | |
| cache-read-only: ${{ github.ref != 'refs/heads/master' && !(endsWith(github.ref, '-dev') && startsWith(github.ref, 'refs/heads/')) }} | |
| - name: Build | |
| run: ./gradlew build | |
| - name: Upload Test Results | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Test Results | |
| path: | | |
| **/build/test-results/test/TEST-*.xml | |
| - name: Determine Status | |
| 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 Snapshot | |
| if: "${{ env.STATUS != 'release' && github.event_name == 'push' && github.ref == 'refs/heads/master' }}" | |
| run: ./gradlew publishAllPublicationsToSonatypeSnapshots --stacktrace | |
| env: | |
| ORG_GRADLE_PROJECT_sonatypeUsername: "${{ secrets.SONATYPE_USERNAME }}" | |
| ORG_GRADLE_PROJECT_sonatypePassword: "${{ secrets.SONATYPE_PASSWORD }}" | |
| - name: Publish Release | |
| if: "${{ env.STATUS == 'release' && github.event_name == 'release' }}" | |
| run: ./gradlew publishReleaseCentralPortalBundle --stacktrace | |
| env: | |
| ORG_GRADLE_PROJECT_sonatypeUsername: "${{ secrets.SONATYPE_USERNAME }}" | |
| ORG_GRADLE_PROJECT_sonatypePassword: "${{ secrets.SONATYPE_PASSWORD }}" | |
| ORG_GRADLE_PROJECT_signingKey: "${{ secrets.SIGNING_KEY }}" | |
| ORG_GRADLE_PROJECT_signingPassword: "${{ secrets.SIGNING_PASSWORD }}" | |
| event_file: | |
| name: "Event File" | |
| # Only run on PRs if the source branch is on someone else's repo | |
| if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Upload | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Event File | |
| path: ${{ github.event_path }} |