Skip to content

Commit

Permalink
fix undeploy
Browse files Browse the repository at this point in the history
  • Loading branch information
milesstoetzner committed Jul 16, 2023
1 parent 7e592ce commit e2a2035
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/night.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,9 @@ jobs:
vintner instances deploy --instance artifacts --inputs examples/unfurl-artifacts/deployment-inputs.ignored.yaml
- name: (EXAMPLES) Test the enterprise plan of unfurl-artifacts on GCP
id: unfurl-artifacts-attest
run: curl https://shop-dot-stoetzms-387808.ey.r.appspot.com

- name: (EXAMPLES) Undeploy the enterprise plan of unfurl-artifacts on GCP
run: vintner instances undeploy --instance artifacts
if: failure() && (steps['unfurl-artifacts-deploy'].outcome == 'failure' || steps['unfurl-artifacts-deploy'].outcome == 'success')
if: steps['unfurl-artifacts-deploy'].outcome == 'success' || steps['unfurl-artifacts-deploy'].outcome == 'failure' || steps['unfurl-artifacts-attest'].outcome == 'success' || steps['unfurl-artifacts-attest'].outcome == 'failure'

0 comments on commit e2a2035

Please sign in to comment.