Skip to content

Commit

Permalink
Merge pull request #5307 from sgibson91/ci-fix-4
Browse files Browse the repository at this point in the history
Use more appropriate Error to catch when resetting matrices
  • Loading branch information
sgibson91 authored Dec 20, 2024
2 parents f30d566 + d12186e commit 1254734
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-hubs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ jobs:
try:
staging_jobs = json.loads(r"""${{ needs.filter-failed-support.outputs.staging-jobs }}""")
prod_jobs = json.loads(r"""${{ needs.filter-failed-support.outputs.prod-jobs }}""")
except KeyError:
except json.decoder.JSONDecodeError:
staging_jobs = json.loads(r"""${{ needs.generate-jobs.outputs.staging-jobs }}""")
prod_jobs = json.loads(r"""${{ needs.generate-jobs.outputs.prod-jobs }}""")
Expand Down

0 comments on commit 1254734

Please sign in to comment.