Skip to content

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

fix: forcing uninstall of demo due to stale image updating

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

Workflow file for this run

name: Deploy 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:
name: Uninstall (demo)
runs-on: ubuntu-22.04
steps:
- run: |
oc login --token=${{ secrets.oc_token }} --server=${{ vars.oc_server }}

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

View workflow run for this annotation

GitHub Actions / .github/workflows/demo.yml

Invalid workflow file

You have an error in your yaml syntax on line 24
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"