From 59b599e2b3461eb57403aae266b03abaa078c184 Mon Sep 17 00:00:00 2001 From: bjornoleh Date: Tue, 14 Jan 2025 11:11:53 +0100 Subject: [PATCH] Update job and step names in create_certs.yml --- .github/workflows/create_certs.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/create_certs.yml b/.github/workflows/create_certs.yml index 1289e4e89..727fc8174 100644 --- a/.github/workflows/create_certs.yml +++ b/.github/workflows/create_certs.yml @@ -19,6 +19,7 @@ jobs: secrets: inherit check_certs: + name: Check certificates needs: validate runs-on: macos-14 outputs: @@ -41,17 +42,17 @@ jobs: - name: Install Project Dependencies run: bundle install - # Create or update provisioning profiles - - name: Check certificate and profiles + # Create or update Distribution certificate and provisioning profiles + - name: Check and create or update Distribution certificate and profiles if needed run: | echo "Running Fastlane certs lane..." bundle exec fastlane certs || true # ignore and continue on errors without annotating an exit code - - name: Check Distribution Certificate and create or renew if needed + - name: Check Distribution certificate and launch Nuke certificates if needed run: bundle exec fastlane check_and_renew_certificates id: check_certs - - name: Set output based on Fastlane result + - name: Set output and annotations based on Fastlane result id: set_output run: | CERT_STATUS_FILE="${{ github.workspace }}/fastlane/new_certificate_needed.txt" @@ -84,6 +85,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, check_certs] runs-on: macos-14 if: ${{ (needs.check_certs.outputs.new_certificate_needed == 'true' && vars.ENABLE_NUKE_CERTS == 'true') || vars.FORCE_NUKE_CERTS == 'true' }}