Skip to content

fix: forcing uninstall of demo due to stale image updating #12

fix: forcing uninstall of demo due to stale image updating

fix: forcing uninstall of demo due to stale image updating #12

Workflow file for this run

name: Deploy Demo

Check failure on line 1 in .github/workflows/demo.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/demo.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: uninstall-demo
on:
workflow_dispatch:
inputs:
environment:
description: "Deployment environment - test --> vault secrets"
required: true
type: choice
options: ["test"]
default: "test"
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
uninstall-demo:
run: |
oc login --token=${{ secrets.oc_token }} --server=${{ vars.oc_server }}
oc project ${{ vars.OC_NAMESPACE }} # Safeguard!
helm uninstall onroutebc-demo
deploy-demo:
name: Deploys (demo)
uses: ./.github/workflows/deploy.yml
secrets: inherit
with:
environment: ${{inputs.environment}} #test env -> test database
tag: ${{inputs.environment}}
release: "demo"
vault_role: "nonprod"
vault_zone: "staging"