Merge pull request #1019 from zzoe2346 #145
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 and Deploy Snapshot | |
| on: | |
| push: | |
| branches: | |
| - 3.0.x | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| jobs: | |
| build-and-deploy-snapshot: | |
| name: Build and Deploy Snapshot | |
| if: ${{ github.repository == 'spring-projects/spring-restdocs' }} | |
| runs-on: ${{ vars.UBUNTU_MEDIUM || 'ubuntu-latest' }} | |
| steps: | |
| - name: Check Out Code | |
| uses: actions/checkout@v4 | |
| - name: Build and Publish | |
| id: build-and-publish | |
| uses: ./.github/actions/build | |
| with: | |
| develocity-access-key: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | |
| gradle-cache-read-only: false | |
| publish: true | |
| - name: Deploy | |
| uses: spring-io/artifactory-deploy-action@e7d40377cd74c3f06554144006ccfd64a548b351 # v0.0.3 | |
| with: | |
| artifact-properties: | | |
| /**/spring-restdocs-*.zip::zip.type=docs,zip.deployed=false | |
| build-name: 'spring-restdocs-3.0.x' | |
| folder: 'deployment-repository' | |
| password: ${{ secrets.ARTIFACTORY_PASSWORD }} | |
| repository: ${{ 'libs-snapshot-local' }} | |
| signing-key: ${{ secrets.GPG_PRIVATE_KEY }} | |
| signing-passphrase: ${{ secrets.GPG_PASSPHRASE }} | |
| uri: 'https://repo.spring.io' | |
| username: ${{ secrets.ARTIFACTORY_USERNAME }} | |
| - name: Send Notification | |
| if: always() | |
| uses: ./.github/actions/send-notification | |
| with: | |
| build-scan-url: ${{ steps.build-and-publish.outputs.build-scan-url }} | |
| run-name: ${{ format('{0} | Linux | Java 17', github.ref_name) }} | |
| status: ${{ job.status }} | |
| webhook-url: ${{ secrets.GOOGLE_CHAT_WEBHOOK_URL }} | |
| outputs: | |
| version: ${{ steps.build-and-publish.outputs.version }} |