Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Deploy

Deploy #365

Workflow file for this run

name: Deploy
on:
workflow_dispatch:
inputs:
cluster:
description: 'Select cluster'
required: false
default: 'dev'
namespace:
type: choice
description: 'Select namespace'
options:
- s01-classroom-foxford
- s01-minigroup-foxford
- s01-minigroup-b2g
- s01-webinar-foxford
- s01-webinar-b2g
- t01
- t02
- t03
version:
description: 'Commit/tag/branch'
required: false
default: 'master'
jobs:
deploy:
uses: foxford/reusable-workflows/.github/workflows/deploy-via-flux.yml@ULMS-2367/setup-workflows-for-monorepo
with:
cluster: ${{ inputs.cluster }}
namespace: ${{ inputs.namespace }}
version: ${{ inputs.version }}
secrets:
kube_config_base64: ${{ secrets.KUBE_CONFIG_DEV_BASE64 }}
gh_token: ${{ secrets._GITHUB_TOKEN }}