Skip to content

Commit

Permalink
Merge pull request #2 from bjornoleh/certs_trio_docs
Browse files Browse the repository at this point in the history
Do not require validate for create_certificated or nuke_certificates
  • Loading branch information
bigolal007 authored Jan 17, 2025
2 parents a86dbab + bb48d93 commit 82a01f5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/create_certs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:

create_certs:
name: Certificates
needs: validate
runs-on: macos-14
outputs:
new_certificate_needed: ${{ steps.set_output.outputs.new_certificate_needed }}
Expand Down Expand Up @@ -93,7 +92,7 @@ jobs:
# Nuke Certs if needed, and if the repository variable ENABLE_NUKE_CERTS is set to 'true', or if FORCE_NUKE_CERTS is set to 'true', which will always force certs to be nuked
nuke_certs:
name: Nuke certificates
needs: [validate, create_certs]
needs: [create_certs]
runs-on: macos-14
if: ${{ (needs.create_certs.outputs.new_certificate_needed == 'true' && vars.ENABLE_NUKE_CERTS == 'true') || vars.FORCE_NUKE_CERTS == 'true' }}
steps:
Expand Down

0 comments on commit 82a01f5

Please sign in to comment.