31
31
tag_pushed : ${{ steps.version_commit.outputs.tag_pushed }}
32
32
if : github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'quarto-dev/quarto-cli')
33
33
steps :
34
+ - name : Prevent Re-run
35
+ uses : ./.github/actions/prevent-rerun
36
+
34
37
- uses : actions/checkout@v4
35
38
with :
36
39
fetch-depth : 0
95
98
runs-on : ubuntu-latest
96
99
needs : [configure]
97
100
steps :
101
+ - name : Prevent Re-run
102
+ uses : ./.github/actions/prevent-rerun
103
+
98
104
- uses : actions/checkout@v4
99
105
with :
100
106
ref : ${{ needs.configure.outputs.version_commit }}
@@ -113,6 +119,9 @@ jobs:
113
119
runs-on : ubuntu-latest
114
120
needs : [configure]
115
121
steps :
122
+ - name : Prevent Re-run
123
+ uses : ./.github/actions/prevent-rerun
124
+
116
125
- uses : actions/checkout@v4
117
126
with :
118
127
ref : ${{ needs.configure.outputs.version_commit }}
@@ -146,6 +155,9 @@ jobs:
146
155
runs-on : ubuntu-latest
147
156
needs : [configure]
148
157
steps :
158
+ - name : Prevent Re-run
159
+ uses : ./.github/actions/prevent-rerun
160
+
149
161
- uses : actions/checkout@v4
150
162
with :
151
163
ref : ${{ needs.configure.outputs.version_commit }}
@@ -179,6 +191,9 @@ jobs:
179
191
runs-on : ubuntu-latest
180
192
needs : [configure]
181
193
steps :
194
+ - name : Prevent Re-run
195
+ uses : ./.github/actions/prevent-rerun
196
+
182
197
- uses : actions/checkout@v4
183
198
with :
184
199
ref : ${{ needs.configure.outputs.version_commit }}
@@ -223,6 +238,9 @@ jobs:
223
238
runs-on : ubuntu-latest
224
239
needs : [configure]
225
240
steps :
241
+ - name : Prevent Re-run
242
+ uses : ./.github/actions/prevent-rerun
243
+
226
244
- uses : actions/checkout@v4
227
245
with :
228
246
ref : ${{ needs.configure.outputs.version_commit }}
@@ -253,6 +271,9 @@ jobs:
253
271
runs-on : ubuntu-latest
254
272
needs : [configure]
255
273
steps :
274
+ - name : Prevent Re-run
275
+ uses : ./.github/actions/prevent-rerun
276
+
256
277
- uses : actions/checkout@v4
257
278
with :
258
279
ref : ${{ needs.configure.outputs.version_commit }}
@@ -283,6 +304,9 @@ jobs:
283
304
runs-on : ubuntu-latest
284
305
needs : [configure, make-tarball]
285
306
steps :
307
+ - name : Prevent Re-run
308
+ uses : ./.github/actions/prevent-rerun
309
+
286
310
- uses : actions/download-artifact@v4
287
311
with :
288
312
name : Deb Zip
@@ -303,6 +327,9 @@ jobs:
303
327
needs : [configure]
304
328
305
329
steps :
330
+ - name : Prevent Re-run
331
+ uses : ./.github/actions/prevent-rerun
332
+
306
333
- name : Configure Rust Tools
307
334
run : |
308
335
rustup.exe toolchain install 1.63.0 --component rustfmt --component clippy --no-self-update
@@ -383,6 +410,9 @@ jobs:
383
410
runs-on : windows-latest
384
411
needs : [configure, make-installer-win]
385
412
steps :
413
+ - name : Prevent Re-run
414
+ uses : ./.github/actions/prevent-rerun
415
+
386
416
- uses : actions/download-artifact@v4
387
417
with :
388
418
name : Windows Zip
@@ -399,6 +429,9 @@ jobs:
399
429
runs-on : macos-latest
400
430
needs : [configure]
401
431
steps :
432
+ - name : Prevent Re-run
433
+ uses : ./.github/actions/prevent-rerun
434
+
402
435
- uses : actions/checkout@v4
403
436
with :
404
437
ref : ${{ needs.configure.outputs.version_commit }}
@@ -464,6 +497,9 @@ jobs:
464
497
runs-on : macos-latest
465
498
needs : [configure, make-installer-mac]
466
499
steps :
500
+ - name : Prevent Re-run
501
+ uses : ./.github/actions/prevent-rerun
502
+
467
503
- uses : actions/download-artifact@v4
468
504
with :
469
505
name : Mac Zip
@@ -499,6 +535,9 @@ jobs:
499
535
]
500
536
501
537
steps :
538
+ - name : Prevent Re-run
539
+ uses : ./.github/actions/prevent-rerun
540
+
502
541
- name : Download Artifacts
503
542
uses : actions/download-artifact@v4
504
543
@@ -599,6 +638,9 @@ jobs:
599
638
]
600
639
runs-on : ubuntu-latest
601
640
steps :
641
+ - name : Prevent Re-run
642
+ uses : ./.github/actions/prevent-rerun
643
+
602
644
- uses : actions/checkout@v4
603
645
604
646
- name : Revert commit of version.txt
@@ -623,6 +665,9 @@ jobs:
623
665
runs-on : ubuntu-latest
624
666
needs : [configure, publish-release]
625
667
steps :
668
+ - name : Prevent Re-run
669
+ uses : ./.github/actions/prevent-rerun
670
+
626
671
- name : Download Artifacts
627
672
uses : actions/download-artifact@v4
628
673
0 commit comments