Sfoglia il codice sorgente

create_certs.yml: Rename validate job, add branch name to workflow name

Deniz Cengiz 2 anni fa
parent
commit
04fe1b7cf5
1 ha cambiato i file con 5 aggiunte e 3 eliminazioni
  1. 5 3
      .github/workflows/create_certs.yml

+ 5 - 3
.github/workflows/create_certs.yml

@@ -1,15 +1,17 @@
 name: 3. Create Certificates
-run-name: Create Certificates
+run-name: Create Certificates (${{ github.ref_name }})
 on:
   workflow_dispatch:
 
 jobs:
-  secrets:
+  validate:
+    name: Validate
     uses: ./.github/workflows/validate_secrets.yml
     secrets: inherit
 
   certificates:
-    needs: secrets
+    name: Create Certificates
+    needs: validate
     runs-on: macos-12
     steps:
       # Uncomment to manually select latest Xcode if needed