[CI] Add CI for 2022.0.x branch

This commit is contained in:
GitHub Actions Bot
2024-02-11 21:17:37 -06:00
committed by Chris Bono
parent 57455f485f
commit 5716fae3d5

27
.github/workflows/ci-2022-0-x.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: 'CI - 2022.0.x'
on:
workflow_dispatch:
inputs:
verbose:
required: false
default: 'false'
description: 'Produces verbose output'
push:
paths-ignore:
- '.github/**'
branches:
- '2022.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 }}
with:
branch: '2022.0.x'
verbose: ${{ inputs.verbose == 'true' }}