Skip to content

Commit

Permalink
e2e-simple: allow to skip undeploy for debugging
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Meyer <[email protected]>
  • Loading branch information
katexochen committed Jan 17, 2024
1 parent 99fbfc5 commit 6399dfd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/e2e_simple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: e2e test simple

on:
workflow_dispatch:
inputs:
skip-undeploy:
description: "Skip undeploy"
required: false
default: "false"
pull_request:

env:
Expand Down Expand Up @@ -55,6 +60,6 @@ jobs:
cat ./workspace/just.namespace >> "$GITHUB_SUMMARY"
cat ./workspace/just.perf >> "$GITHUB_SUMMARY"
- name: Undeploy
if: always()
if: always() && inputs.skip-undeploy != 'true'
run: |
just undeploy

0 comments on commit 6399dfd

Please sign in to comment.