Skip to content

Commit

Permalink
Add CI workflow for 2024.0.x branch
Browse files Browse the repository at this point in the history
  • Loading branch information
onobc committed Dec 18, 2024
1 parent 0c843d9 commit 3d6587e
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci-2024-0-x.yml
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit 3d6587e

Please sign in to comment.