From 0abafbe00c98ac821a93048645808e5906ad1ce4 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Tue, 3 Feb 2026 16:49:24 -0500 Subject: [PATCH] Remove old deploy job --- .github/workflows/deploy.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index a56d8081..00000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Spring Cloud Build Deploy - -on: - push: - branches: - - main - - 4.3.x - - # Scheduled builds run daily at midnight UTC - schedule: - - cron: '0 0 * * *' - - # Manual trigger with optional branch override - workflow_dispatch: - inputs: - branches: - description: "Which branch should be built (can be a comma-separated list of branches)" - required: true - default: 'main' - type: string - -jobs: - deploy: - uses: spring-cloud/spring-cloud-github-actions/.github/workflows/deploy.yml@main - with: - branches: ${{ inputs.branches }} - secrets: - ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} - ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} - COMMERCIAL_ARTIFACTORY_USERNAME: ${{ secrets.COMMERCIAL_ARTIFACTORY_USERNAME }} - COMMERCIAL_ARTIFACTORY_PASSWORD: ${{ secrets.COMMERCIAL_ARTIFACTORY_PASSWORD }} - DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} - DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}