diff --git a/.github/workflows/ci-2024-0-x.yml b/.github/workflows/ci-2024-0-x.yml new file mode 100644 index 00000000..e7d995a8 --- /dev/null +++ b/.github/workflows/ci-2024-0-x.yml @@ -0,0 +1,31 @@ +name: 'CI - 2024.0.x' + +on: + workflow_dispatch: + inputs: + verbose: + default: 'false' + description: 'Verbose output' + required: false + push: + paths-ignore: + - '.github/**' + - 'spring-cloud-dataflow-apps-plugin/**' + branches: + - '2024.0.x' + +jobs: + build: + uses: ./.github/workflows/common.yml + secrets: + DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} + DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} + TMC_API_TOKEN: ${{ secrets.TMC_API_TOKEN }} + GCP_CRED_JSON: ${{ secrets.GCP_CRED_JSON }} + ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} + ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} + JF_ARTIFACTORY_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }} + with: + branch: '2024.0.x' + verbose: ${{ inputs.verbose == 'true' }} + mavenThreads: '0.5C'