Skip to content

Default Pipeline

Default Pipeline #38

name: "Default Pipeline"
on:
workflow_dispatch:
inputs:
ref:
description: "Ref to trigger workflow"
required: false
default: "master"
project_name:
description: "Project package name"
required: true
environment:
type: string
description: "Deploy environment type"
required: true
jobs:
build:
uses: ./.github/workflows/build_generic.yaml
with:
ref: ${{ inputs.ref }}
project_name: ${{ inputs.project_name }}
secrets: inherit
deploy:
needs: build
uses: ./.github/workflows/deploy_k8s.yaml
with:
project_name: ${{ inputs.project_name }}
environment: ${{ inputs.environment }}
secrets: inherit