From b05bf74a82063445e1f9f085d7fd51eb6c3fb689 Mon Sep 17 00:00:00 2001 From: Steve Riesenberg Date: Wed, 20 Apr 2022 15:34:42 -0500 Subject: [PATCH] Enable jobs to deploy artifacts and docs Closes gh-695 --- .github/workflows/continuous-integration-workflow.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 73b50bce..ce8e1fee 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -9,8 +9,6 @@ on: env: RUN_JOBS: ${{ github.repository == 'spring-projects/spring-authorization-server' }} - DEPLOY_ARTIFACTS: false - DEPLOY_DOCS: false jobs: prerequisites: @@ -96,7 +94,6 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 - name: Deploy Artifacts - if: env.DEPLOY_ARTIFACTS == 'true' env: GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USER }} GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }} @@ -121,7 +118,6 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 - name: Deploy Docs - if: env.DEPLOY_DOCS == 'true' env: GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USER }} GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }}