chore: update all dependencies with patch changes (#58) #261
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: [ "**" ] | |
| tags-ignore: [ "**" ] | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| cancel-in-progress: true | |
| group: build-${{ github.event.pull_request.number || github.ref }} | |
| permissions: | |
| issues: read | |
| checks: write | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Run Build | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup java | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: 22 | |
| check-latest: true | |
| distribution: 'zulu' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| with: | |
| add-job-summary: always | |
| cache-cleanup: on-success | |
| cache-read-only: ${{ github.ref != 'refs/heads/main' }} | |
| - name: Execute build and tests | |
| run: ./gradlew build test shadowJar --stacktrace | |
| - name: Publish test summary | |
| if: always() | |
| uses: EnricoMi/publish-unit-test-result-action@v2 | |
| with: | |
| junit_files: "**/build/test-results/test/TEST-*.xml" | |
| - name: Prepare artifact jar | |
| run: cp cloudnet-rest-module/build/libs/cloudnet-rest.jar cloudnet-rest.jar | |
| - name: Upload artifact jar | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: CloudNet-Rest | |
| path: cloudnet-rest.jar |