File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2222 " contact" ,
2323 " offline" ,
2424 {
25- "privacy" : [
26- " my-data"
27- ]
25+ "privacy" : [" my-data" ]
2826 },
2927 {
30- "services" : [
31- " create-custom-font-sets" ,
32- " overview"
33- ]
28+ "services" : [" create-custom-font-sets" , " overview" ]
3429 },
3530 {
3631 "tags" : [
4540 " typescript"
4641 ]
4742 }
48- ]
43+ ]
Original file line number Diff line number Diff line change 6464 VERCEL_TOKEN : ${{ secrets.VERCEL_TOKEN }}
6565
6666 - name : Comment preview URL on PR
67- if : steps.vercel-preview.outcome == 'success'
67+ if : always() && steps.vercel-preview.outcome == 'success'
6868 uses : actions/github-script@v8
6969 with :
7070 script : |
8282 });
8383
8484 - name : Comment preview failure on PR
85- if : steps.vercel-preview.outcome != 'success'
85+ if : always() && steps.vercel-preview.outcome != 'success'
8686 uses : actions/github-script@v8
8787 with :
8888 script : |
@@ -128,12 +128,13 @@ jobs:
128128 VERCEL_TOKEN : ${{ secrets.VERCEL_TOKEN }}
129129
130130 - name : Log production deployment
131+ if : always() && steps.vercel-production.outcome == 'success'
131132 run : |
132133 echo "🚀 Production deployment completed"
133134 echo "Production URL: ${{ steps.vercel-production.outputs.preview-url }}"
134135
135136 - name : Comment production deployment failure on commit
136- if : steps.vercel-production.outcome != 'success'
137+ if : always() && steps.vercel-production.outcome != 'success'
137138 uses : actions/github-script@v8
138139 with :
139140 script : |
You can’t perform that action at this time.
0 commit comments