@@ -32,13 +32,13 @@ jobs:
32
32
tag_pushed : ${{ steps.version_commit.outputs.tag_pushed }}
33
33
if : github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'quarto-dev/quarto-cli')
34
34
steps :
35
- - name : Prevent Re-run
36
- uses : ./.github/actions/prevent-rerun
37
-
38
35
- uses : actions/checkout@v4
39
36
with :
40
37
fetch-depth : 0
41
38
39
+ - name : Prevent Re-run
40
+ uses : ./.github/workflows/actions/prevent-rerun
41
+
42
42
# we _also_ need npm, specifically for webui/preview
43
43
- uses : actions/setup-node@v4
44
44
with :
@@ -99,13 +99,13 @@ jobs:
99
99
runs-on : ubuntu-latest
100
100
needs : [configure]
101
101
steps :
102
- - name : Prevent Re-run
103
- uses : ./.github/actions/prevent-rerun
104
-
105
102
- uses : actions/checkout@v4
106
103
with :
107
104
ref : ${{ needs.configure.outputs.version_commit }}
108
105
106
+ - name : Prevent Re-run
107
+ uses : ./.github/workflows/actions/prevent-rerun
108
+
109
109
- name : Make Tarball
110
110
run : |
111
111
tar --owner=root --group=root -zcvf quarto-${{needs.configure.outputs.version}}.tar.gz *
@@ -120,13 +120,13 @@ jobs:
120
120
runs-on : ubuntu-latest
121
121
needs : [configure]
122
122
steps :
123
- - name : Prevent Re-run
124
- uses : ./.github/actions/prevent-rerun
125
-
126
123
- uses : actions/checkout@v4
127
124
with :
128
125
ref : ${{ needs.configure.outputs.version_commit }}
129
126
127
+ - name : Prevent Re-run
128
+ uses : ./.github/workflows/actions/prevent-rerun
129
+
130
130
- name : Configure
131
131
run : |
132
132
./configure.sh
@@ -156,13 +156,13 @@ jobs:
156
156
runs-on : ubuntu-latest
157
157
needs : [configure]
158
158
steps :
159
- - name : Prevent Re-run
160
- uses : ./.github/actions/prevent-rerun
161
-
162
159
- uses : actions/checkout@v4
163
160
with :
164
161
ref : ${{ needs.configure.outputs.version_commit }}
165
162
163
+ - name : Prevent Re-run
164
+ uses : ./.github/workflows/actions/prevent-rerun
165
+
166
166
- name : Configure
167
167
run : |
168
168
./configure.sh
@@ -192,13 +192,13 @@ jobs:
192
192
runs-on : ubuntu-latest
193
193
needs : [configure]
194
194
steps :
195
- - name : Prevent Re-run
196
- uses : ./.github/actions/prevent-rerun
197
-
198
195
- uses : actions/checkout@v4
199
196
with :
200
197
ref : ${{ needs.configure.outputs.version_commit }}
201
198
199
+ - name : Prevent Re-run
200
+ uses : ./.github/workflows/actions/prevent-rerun
201
+
202
202
- name : Configure
203
203
run : |
204
204
./configure.sh
@@ -239,13 +239,13 @@ jobs:
239
239
runs-on : ubuntu-latest
240
240
needs : [configure]
241
241
steps :
242
- - name : Prevent Re-run
243
- uses : ./.github/actions/prevent-rerun
244
-
245
242
- uses : actions/checkout@v4
246
243
with :
247
244
ref : ${{ needs.configure.outputs.version_commit }}
248
245
246
+ - name : Prevent Re-run
247
+ uses : ./.github/workflows/actions/prevent-rerun
248
+
249
249
- name : Configure
250
250
run : |
251
251
./configure.sh
@@ -272,13 +272,13 @@ jobs:
272
272
runs-on : ubuntu-latest
273
273
needs : [configure]
274
274
steps :
275
- - name : Prevent Re-run
276
- uses : ./.github/actions/prevent-rerun
277
-
278
275
- uses : actions/checkout@v4
279
276
with :
280
277
ref : ${{ needs.configure.outputs.version_commit }}
281
278
279
+ - name : Prevent Re-run
280
+ uses : ./.github/workflows/actions/prevent-rerun
281
+
282
282
- name : Configure
283
283
run : |
284
284
./configure.sh
@@ -305,8 +305,14 @@ jobs:
305
305
runs-on : ubuntu-latest
306
306
needs : [configure, make-tarball]
307
307
steps :
308
+ - uses : actions/checkout@v4
309
+ with :
310
+ ref : ${{ needs.configure.outputs.version_commit }}
311
+ sparse-checkout : |
312
+ .github
313
+
308
314
- name : Prevent Re-run
309
- uses : ./.github/actions/prevent-rerun
315
+ uses : ./.github/workflows/ actions/prevent-rerun
310
316
311
317
- uses : actions/download-artifact@v4
312
318
with :
@@ -328,18 +334,17 @@ jobs:
328
334
needs : [configure]
329
335
330
336
steps :
337
+ - uses : actions/checkout@v4
338
+ with :
339
+ ref : ${{ needs.configure.outputs.version_commit }}
340
+
331
341
- name : Prevent Re-run
332
- uses : ./.github/actions/prevent-rerun
342
+ uses : ./.github/workflows/ actions/prevent-rerun
333
343
334
344
- name : Configure Rust Tools
335
345
run : |
336
346
rustup.exe toolchain install 1.63.0 --component rustfmt --component clippy --no-self-update
337
347
rustup.exe default 1.63.0
338
-
339
- - uses : actions/checkout@v4
340
- with :
341
- ref : ${{ needs.configure.outputs.version_commit }}
342
-
343
348
- name : Configure
344
349
run : |
345
350
.\configure.cmd
@@ -411,8 +416,14 @@ jobs:
411
416
runs-on : windows-latest
412
417
needs : [configure, make-installer-win]
413
418
steps :
419
+ - uses : actions/checkout@v4
420
+ with :
421
+ ref : ${{ needs.configure.outputs.version_commit }}
422
+ sparse-checkout : |
423
+ .github
424
+
414
425
- name : Prevent Re-run
415
- uses : ./.github/actions/prevent-rerun
426
+ uses : ./.github/workflows/ actions/prevent-rerun
416
427
417
428
- uses : actions/download-artifact@v4
418
429
with :
@@ -430,13 +441,13 @@ jobs:
430
441
runs-on : macos-latest
431
442
needs : [configure]
432
443
steps :
433
- - name : Prevent Re-run
434
- uses : ./.github/actions/prevent-rerun
435
-
436
444
- uses : actions/checkout@v4
437
445
with :
438
446
ref : ${{ needs.configure.outputs.version_commit }}
439
447
448
+ - name : Prevent Re-run
449
+ uses : ./.github/workflows/actions/prevent-rerun
450
+
440
451
- name : Configure
441
452
run : |
442
453
./configure.sh
@@ -498,6 +509,12 @@ jobs:
498
509
runs-on : macos-latest
499
510
needs : [configure, make-installer-mac]
500
511
steps :
512
+ - uses : actions/checkout@v4
513
+ with :
514
+ ref : ${{ needs.configure.outputs.version_commit }}
515
+ sparse-checkout : |
516
+ .github
517
+
501
518
- name : Prevent Re-run
502
519
uses : ./.github/actions/prevent-rerun
503
520
@@ -536,8 +553,15 @@ jobs:
536
553
]
537
554
538
555
steps :
556
+ - uses : actions/checkout@v4
557
+ with :
558
+ ref : ${{ needs.configure.outputs.version_commit }}
559
+ path : quarto-cli
560
+ sparse-checkout : |
561
+ .github
562
+
539
563
- name : Prevent Re-run
540
- uses : ./.github/actions/prevent-rerun
564
+ uses : ./quarto-cli/ .github/actions/prevent-rerun
541
565
542
566
- name : Download Artifacts
543
567
uses : actions/download-artifact@v4
0 commit comments