From fd5fc49e9bdfd5e3da55067a395739c804882b51 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Mon, 21 Oct 2024 14:55:40 +0100 Subject: [PATCH] Add workflow to set docs publishing properties --- .../workflows/set-docs-publishing-properties.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/set-docs-publishing-properties.yml diff --git a/.github/workflows/set-docs-publishing-properties.yml b/.github/workflows/set-docs-publishing-properties.yml new file mode 100644 index 00000000..ea4bd8c0 --- /dev/null +++ b/.github/workflows/set-docs-publishing-properties.yml @@ -0,0 +1,13 @@ +name: Set Docs Publishing Properties +on: push +jobs: + set-properties: + name: Set Properties + runs-on: ubuntu-latest + steps: + - name: Set up JFrog CLI + uses: jfrog/setup-jfrog-cli@9fe0f98bd45b19e6e931d457f4e98f8f84461fb5 # v4.4.1 + env: + JF_ENV_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }} + - name: Set Properties + run: jfrog rt set-props --build spring-restdocs-3.0.2 '**/spring-restdocs-3.0.2-docs.zip' 'zip.type=docs;zip.deployed=false'