From 5c53e8c71a973cfdaff5ebc7b735ef559aef5dc6 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Thu, 28 Mar 2024 14:38:05 +0000 Subject: [PATCH] Move to GitHub Actions to build and deploy snapshots Closes gh-924 --- .../workflows/build-and-deploy-snapshot.yml | 49 +++++++++++++++++++ ci/pipeline.yml | 10 ---- 2 files changed, 49 insertions(+), 10 deletions(-) create mode 100644 .github/workflows/build-and-deploy-snapshot.yml diff --git a/.github/workflows/build-and-deploy-snapshot.yml b/.github/workflows/build-and-deploy-snapshot.yml new file mode 100644 index 00000000..9c4749f2 --- /dev/null +++ b/.github/workflows/build-and-deploy-snapshot.yml @@ -0,0 +1,49 @@ +name: Build and Deploy Snapshot +on: + push: + branches: + - main +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} +jobs: + build: + if: ${{ github.repository == 'spring-gradle-plugins/dependency-management-plugin' }} + name: Build and Deploy Snapshot + runs-on: ubuntu-latest + steps: + - name: Set up Java + uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 + with: + distribution: 'liberica' + java-version: 17 + - name: Check Out Code + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - name: Set Up Gradle + uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0 + - name: Configure Gradle Properties + shell: bash + run: | + mkdir -p $HOME/.gradle + echo 'systemProp.user.name=spring-builds+github' >> $HOME/.gradle/gradle.properties + echo 'systemProp.org.gradle.internal.launcher.welcomeMessageEnabled=false' >> $HOME/.gradle/gradle.properties + echo 'org.gradle.daemon=false' >> $HOME/.gradle/gradle.properties + - name: Build and Publish + env: + GRADLE_ENTERPRISE_URL: 'https://ge.spring.io' + GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }} + GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USER }} + GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }} + run: ./gradlew -PdeploymentRepository=$(pwd)/distribution-repository build publishAllPublicationsToDeploymentRepository + - name: Deploy + uses: spring-io/artifactory-deploy-action@26bbe925a75f4f863e1e529e85be2d0093cac116 # v0.0.1 + with: + uri: 'https://repo.spring.io' + username: ${{ secrets.ARTIFACTORY_USERNAME }} + password: ${{ secrets.ARTIFACTORY_PASSWORD }} + build-name: spring-restdocs + repository: 'libs-snapshot-local' + folder: 'deployment-repository' + signing-key: ${{ secrets.GPG_PRIVATE_KEY }} + signing-passphrase: ${{ secrets.GPG_PASSPHRASE }} + artifact-properties: | + /**/spring-restdocs-*.zip::zip.type=docs,zip.deployed=false diff --git a/ci/pipeline.yml b/ci/pipeline.yml index 3c340e91..c98f0224 100644 --- a/ci/pipeline.yml +++ b/ci/pipeline.yml @@ -206,16 +206,6 @@ jobs: <<: *slack-fail-params - put: repo-status-build params: { state: "success", commit: "git-repo" } - - put: artifactory-repo - params: - <<: *artifactory-repo-put-params - get_params: - threads: 8 - on_failure: - do: - - put: slack-alert - params: - <<: *slack-fail-params - put: slack-alert params: <<: *slack-success-params