Skip to content

Build webportal image #554

Build webportal image

Build webportal image #554

name: Build webportal image
on:
workflow_dispatch:
inputs:
deployment_branch:
description: 'Deployment branch'
required: true
default: 'main'
build_mode:
type: choice
description: Build mode
options:
- dev
- stable
image_tag:
description: 'Image tag'
required: true
default: 'latest'
workflow_run:
workflows:
- ecmwf-projects/cads-build-farm/build-images.yml
types: [requested]
jobs:
build_webportal:
name: Build webportal:${{ inputs.image_tag }} from ${{ inputs.build_mode }}
uses: ecmwf-projects/cads-build-farm/.github/workflows/build-cads-image.yml@main
with:
image_name: webportal
deployment_branch: ${{ inputs.deployment_branch }}
build_mode: ${{ inputs.build_mode }}
image_tag: ${{ inputs.image_tag }}
secrets: inherit