Add CI workflow for 2024.0.x branch
This commit is contained in:
31
.github/workflows/ci-2024-0-x.yml
vendored
Normal file
31
.github/workflows/ci-2024-0-x.yml
vendored
Normal file
@@ -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'
|
||||
Reference in New Issue
Block a user