-
-
Notifications
You must be signed in to change notification settings - Fork 1
1365 lines (1365 loc) · 101 KB
/
check-ieee-peerreview-a4-lualatex-bibtex-2024-false.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
name: Check ieee-peerreview-a4-lualatex-bibtex-2024-false
on:
push:
branches:
- main
paths-ignore:
- '.editorconfig'
- '.eslintignore'
- '.gitpod.dockerfile'
- '.gitpod.yml'
- '.gitattributes'
- '.gitignore'
- '.markdownlint.yml'
- 'CHANGELOG.md'
- 'CONTRIBUTING.md'
- 'generate-texlivefile.sh'
- 'LICENSE'
- 'README.md'
- 'setup-do.sh'
- 'user-data.sh'
- 'docs/**'
- '.vscode/**'
pull_request:
branches:
- main
paths-ignore:
- '.editorconfig'
- '.eslintignore'
- '.gitpod.dockerfile'
- '.gitpod.yml'
- '.gitattributes'
- '.gitignore'
- '.markdownlint.yml'
- 'CHANGELOG.md'
- 'CONTRIBUTING.md'
- 'generate-texlivefile.sh'
- 'LICENSE'
- 'README.md'
- 'setup-do.sh'
- 'user-data.sh'
- 'docs/**'
- '.vscode/**'
merge_group:
concurrency:
group: "${{ github.workflow }}-${{ github.head_ref || github.ref }}"
cancel-in-progress: true
jobs:
check:
name: Check ieee-peerreview-a4-lualatex-bibtex-2024-false
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Update npm
run: |
npm i -g npm@latest
npm i npm@latest
- run: npm install
- run: mkdir /tmp/out
- name: Summary table heading
run: |
TABLE='| documentclass | latexcompiler | bibtextool | texlive | lang | font | listing | enquote | tweakouterquote | todo | example | howtotext | link |'
echo "TABLE=${TABLE}\n| -- | -- | -- | -- | -- | --| -- | -- | -- | -- | -- | -- | -- |" >> $GITHUB_ENV
- run: mkdir var_1972
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_listings_csquotes_babel_pdfcomment_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_1972' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | listings | csquotes | babel | pdfcomment | false | true |' >> $GITHUB_ENV
- name: Create var_1972
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=listings --enquotes=csquotes --tweakouterquote=babel --todo=pdfcomment --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_1972'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_1972/Texlivefile'
- name: latexmk var_1972
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_1972'
- id: var_1972_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | listings | csquotes | babel | pdfcomment | false | true | [link](${{ steps.var_1972_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_983a
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_listings_csquotes_babel_none_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_983a' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | listings | csquotes | babel | none | false | true |' >> $GITHUB_ENV
- name: Create var_983a
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=listings --enquotes=csquotes --tweakouterquote=babel --todo=none --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_983a'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_983a/Texlivefile'
- name: latexmk var_983a
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_983a'
- id: var_983a_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | listings | csquotes | babel | none | false | true | [link](${{ steps.var_983a_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_7258
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_listings_csquotes_outerquote_pdfcomment_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_7258' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | listings | csquotes | outerquote | pdfcomment | false | true |' >> $GITHUB_ENV
- name: Create var_7258
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=listings --enquotes=csquotes --tweakouterquote=outerquote --todo=pdfcomment --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_7258'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_7258/Texlivefile'
- name: latexmk var_7258
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_7258'
- id: var_7258_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | listings | csquotes | outerquote | pdfcomment | false | true | [link](${{ steps.var_7258_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_c7c5
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_listings_csquotes_outerquote_none_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_c7c5' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | listings | csquotes | outerquote | none | false | true |' >> $GITHUB_ENV
- name: Create var_c7c5
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=listings --enquotes=csquotes --tweakouterquote=outerquote --todo=none --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_c7c5'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_c7c5/Texlivefile'
- name: latexmk var_c7c5
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_c7c5'
- id: var_c7c5_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | listings | csquotes | outerquote | none | false | true | [link](${{ steps.var_c7c5_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_0857
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_listings_plainlatex_babel_pdfcomment_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_0857' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | listings | plainlatex | babel | pdfcomment | false | true |' >> $GITHUB_ENV
- name: Create var_0857
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=listings --enquotes=plainlatex --tweakouterquote=babel --todo=pdfcomment --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_0857'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_0857/Texlivefile'
- name: latexmk var_0857
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_0857'
- id: var_0857_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | listings | plainlatex | babel | pdfcomment | false | true | [link](${{ steps.var_0857_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_f4a6
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_listings_plainlatex_babel_none_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_f4a6' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | listings | plainlatex | babel | none | false | true |' >> $GITHUB_ENV
- name: Create var_f4a6
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=listings --enquotes=plainlatex --tweakouterquote=babel --todo=none --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_f4a6'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_f4a6/Texlivefile'
- name: latexmk var_f4a6
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_f4a6'
- id: var_f4a6_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | listings | plainlatex | babel | none | false | true | [link](${{ steps.var_f4a6_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_1651
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_listings_plainlatex_outerquote_pdfcomment_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_1651' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | listings | plainlatex | outerquote | pdfcomment | false | true |' >> $GITHUB_ENV
- name: Create var_1651
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=listings --enquotes=plainlatex --tweakouterquote=outerquote --todo=pdfcomment --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_1651'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_1651/Texlivefile'
- name: latexmk var_1651
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_1651'
- id: var_1651_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | listings | plainlatex | outerquote | pdfcomment | false | true | [link](${{ steps.var_1651_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_441f
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_listings_plainlatex_outerquote_none_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_441f' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | listings | plainlatex | outerquote | none | false | true |' >> $GITHUB_ENV
- name: Create var_441f
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=listings --enquotes=plainlatex --tweakouterquote=outerquote --todo=none --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_441f'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_441f/Texlivefile'
- name: latexmk var_441f
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_441f'
- id: var_441f_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | listings | plainlatex | outerquote | none | false | true | [link](${{ steps.var_441f_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_04c7
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_minted_csquotes_babel_pdfcomment_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_04c7' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | minted | csquotes | babel | pdfcomment | false | true |' >> $GITHUB_ENV
- name: Create var_04c7
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=minted --enquotes=csquotes --tweakouterquote=babel --todo=pdfcomment --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_04c7'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_04c7/Texlivefile'
- name: latexmk var_04c7
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_04c7'
- id: var_04c7_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | minted | csquotes | babel | pdfcomment | false | true | [link](${{ steps.var_04c7_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_ba64
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_minted_csquotes_babel_none_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_ba64' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | minted | csquotes | babel | none | false | true |' >> $GITHUB_ENV
- name: Create var_ba64
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=minted --enquotes=csquotes --tweakouterquote=babel --todo=none --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_ba64'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_ba64/Texlivefile'
- name: latexmk var_ba64
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_ba64'
- id: var_ba64_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | minted | csquotes | babel | none | false | true | [link](${{ steps.var_ba64_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_759f
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_minted_csquotes_outerquote_pdfcomment_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_759f' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | minted | csquotes | outerquote | pdfcomment | false | true |' >> $GITHUB_ENV
- name: Create var_759f
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=minted --enquotes=csquotes --tweakouterquote=outerquote --todo=pdfcomment --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_759f'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_759f/Texlivefile'
- name: latexmk var_759f
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_759f'
- id: var_759f_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | minted | csquotes | outerquote | pdfcomment | false | true | [link](${{ steps.var_759f_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_e854
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_minted_csquotes_outerquote_none_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_e854' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | minted | csquotes | outerquote | none | false | true |' >> $GITHUB_ENV
- name: Create var_e854
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=minted --enquotes=csquotes --tweakouterquote=outerquote --todo=none --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_e854'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_e854/Texlivefile'
- name: latexmk var_e854
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_e854'
- id: var_e854_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | minted | csquotes | outerquote | none | false | true | [link](${{ steps.var_e854_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_28e3
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_minted_plainlatex_babel_pdfcomment_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_28e3' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | minted | plainlatex | babel | pdfcomment | false | true |' >> $GITHUB_ENV
- name: Create var_28e3
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=minted --enquotes=plainlatex --tweakouterquote=babel --todo=pdfcomment --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_28e3'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_28e3/Texlivefile'
- name: latexmk var_28e3
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_28e3'
- id: var_28e3_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | minted | plainlatex | babel | pdfcomment | false | true | [link](${{ steps.var_28e3_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_93e9
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_minted_plainlatex_babel_none_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_93e9' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | minted | plainlatex | babel | none | false | true |' >> $GITHUB_ENV
- name: Create var_93e9
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=minted --enquotes=plainlatex --tweakouterquote=babel --todo=none --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_93e9'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_93e9/Texlivefile'
- name: latexmk var_93e9
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_93e9'
- id: var_93e9_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | minted | plainlatex | babel | none | false | true | [link](${{ steps.var_93e9_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_5bae
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_minted_plainlatex_outerquote_pdfcomment_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_5bae' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | minted | plainlatex | outerquote | pdfcomment | false | true |' >> $GITHUB_ENV
- name: Create var_5bae
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=minted --enquotes=plainlatex --tweakouterquote=outerquote --todo=pdfcomment --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_5bae'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_5bae/Texlivefile'
- name: latexmk var_5bae
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_5bae'
- id: var_5bae_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | minted | plainlatex | outerquote | pdfcomment | false | true | [link](${{ steps.var_5bae_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_c10e
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_minted_plainlatex_outerquote_none_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_c10e' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | minted | plainlatex | outerquote | none | false | true |' >> $GITHUB_ENV
- name: Create var_c10e
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=minted --enquotes=plainlatex --tweakouterquote=outerquote --todo=none --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_c10e'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_c10e/Texlivefile'
- name: latexmk var_c10e
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_c10e'
- id: var_c10e_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | minted | plainlatex | outerquote | none | false | true | [link](${{ steps.var_c10e_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_ccf8
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_de_default_listings_csquotes_babel_pdfcomment_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_ccf8' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | de | default | listings | csquotes | babel | pdfcomment | false | true |' >> $GITHUB_ENV
- name: Create var_ccf8
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=de --font=default --listings=listings --enquotes=csquotes --tweakouterquote=babel --todo=pdfcomment --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_ccf8'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_ccf8/Texlivefile'
- name: latexmk var_ccf8
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_ccf8'
- id: var_ccf8_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | de | default | listings | csquotes | babel | pdfcomment | false | true | [link](${{ steps.var_ccf8_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_bc29
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_de_default_listings_csquotes_babel_none_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_bc29' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | de | default | listings | csquotes | babel | none | false | true |' >> $GITHUB_ENV
- name: Create var_bc29
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=de --font=default --listings=listings --enquotes=csquotes --tweakouterquote=babel --todo=none --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_bc29'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_bc29/Texlivefile'
- name: latexmk var_bc29
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_bc29'
- id: var_bc29_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | de | default | listings | csquotes | babel | none | false | true | [link](${{ steps.var_bc29_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_62b1
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_de_default_listings_csquotes_outerquote_pdfcomment_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_62b1' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | de | default | listings | csquotes | outerquote | pdfcomment | false | true |' >> $GITHUB_ENV
- name: Create var_62b1
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=de --font=default --listings=listings --enquotes=csquotes --tweakouterquote=outerquote --todo=pdfcomment --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_62b1'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_62b1/Texlivefile'
- name: latexmk var_62b1
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_62b1'
- id: var_62b1_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | de | default | listings | csquotes | outerquote | pdfcomment | false | true | [link](${{ steps.var_62b1_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_afc7
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_de_default_listings_csquotes_outerquote_none_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_afc7' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | de | default | listings | csquotes | outerquote | none | false | true |' >> $GITHUB_ENV
- name: Create var_afc7
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=de --font=default --listings=listings --enquotes=csquotes --tweakouterquote=outerquote --todo=none --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_afc7'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_afc7/Texlivefile'
- name: latexmk var_afc7
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_afc7'
- id: var_afc7_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | de | default | listings | csquotes | outerquote | none | false | true | [link](${{ steps.var_afc7_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_885b
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_de_default_listings_plainlatex_babel_pdfcomment_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_885b' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | de | default | listings | plainlatex | babel | pdfcomment | false | true |' >> $GITHUB_ENV
- name: Create var_885b
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=de --font=default --listings=listings --enquotes=plainlatex --tweakouterquote=babel --todo=pdfcomment --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_885b'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_885b/Texlivefile'
- name: latexmk var_885b
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_885b'
- id: var_885b_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | de | default | listings | plainlatex | babel | pdfcomment | false | true | [link](${{ steps.var_885b_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_416c
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_de_default_listings_plainlatex_babel_none_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_416c' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | de | default | listings | plainlatex | babel | none | false | true |' >> $GITHUB_ENV
- name: Create var_416c
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=de --font=default --listings=listings --enquotes=plainlatex --tweakouterquote=babel --todo=none --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_416c'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_416c/Texlivefile'
- name: latexmk var_416c
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_416c'
- id: var_416c_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | de | default | listings | plainlatex | babel | none | false | true | [link](${{ steps.var_416c_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_c693
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_de_default_listings_plainlatex_outerquote_pdfcomment_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_c693' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | de | default | listings | plainlatex | outerquote | pdfcomment | false | true |' >> $GITHUB_ENV
- name: Create var_c693
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=de --font=default --listings=listings --enquotes=plainlatex --tweakouterquote=outerquote --todo=pdfcomment --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_c693'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_c693/Texlivefile'
- name: latexmk var_c693
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_c693'
- id: var_c693_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | de | default | listings | plainlatex | outerquote | pdfcomment | false | true | [link](${{ steps.var_c693_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_b035
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_de_default_listings_plainlatex_outerquote_none_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_b035' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | de | default | listings | plainlatex | outerquote | none | false | true |' >> $GITHUB_ENV
- name: Create var_b035
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=de --font=default --listings=listings --enquotes=plainlatex --tweakouterquote=outerquote --todo=none --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_b035'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_b035/Texlivefile'
- name: latexmk var_b035
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_b035'
- id: var_b035_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | de | default | listings | plainlatex | outerquote | none | false | true | [link](${{ steps.var_b035_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_80ae
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_de_default_minted_csquotes_babel_pdfcomment_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_80ae' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | de | default | minted | csquotes | babel | pdfcomment | false | true |' >> $GITHUB_ENV
- name: Create var_80ae
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=de --font=default --listings=minted --enquotes=csquotes --tweakouterquote=babel --todo=pdfcomment --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_80ae'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_80ae/Texlivefile'
- name: latexmk var_80ae
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_80ae'
- id: var_80ae_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | de | default | minted | csquotes | babel | pdfcomment | false | true | [link](${{ steps.var_80ae_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_b074
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_de_default_minted_csquotes_babel_none_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_b074' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | de | default | minted | csquotes | babel | none | false | true |' >> $GITHUB_ENV
- name: Create var_b074
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=de --font=default --listings=minted --enquotes=csquotes --tweakouterquote=babel --todo=none --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_b074'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_b074/Texlivefile'
- name: latexmk var_b074
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_b074'
- id: var_b074_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | de | default | minted | csquotes | babel | none | false | true | [link](${{ steps.var_b074_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_44cf
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_de_default_minted_csquotes_outerquote_pdfcomment_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_44cf' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | de | default | minted | csquotes | outerquote | pdfcomment | false | true |' >> $GITHUB_ENV
- name: Create var_44cf
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=de --font=default --listings=minted --enquotes=csquotes --tweakouterquote=outerquote --todo=pdfcomment --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_44cf'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_44cf/Texlivefile'
- name: latexmk var_44cf
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_44cf'
- id: var_44cf_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | de | default | minted | csquotes | outerquote | pdfcomment | false | true | [link](${{ steps.var_44cf_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_3f9a
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_de_default_minted_csquotes_outerquote_none_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_3f9a' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | de | default | minted | csquotes | outerquote | none | false | true |' >> $GITHUB_ENV
- name: Create var_3f9a
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=de --font=default --listings=minted --enquotes=csquotes --tweakouterquote=outerquote --todo=none --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_3f9a'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_3f9a/Texlivefile'
- name: latexmk var_3f9a
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_3f9a'
- id: var_3f9a_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | de | default | minted | csquotes | outerquote | none | false | true | [link](${{ steps.var_3f9a_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_aaa4
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_de_default_minted_plainlatex_babel_pdfcomment_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_aaa4' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | de | default | minted | plainlatex | babel | pdfcomment | false | true |' >> $GITHUB_ENV
- name: Create var_aaa4
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=de --font=default --listings=minted --enquotes=plainlatex --tweakouterquote=babel --todo=pdfcomment --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_aaa4'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_aaa4/Texlivefile'
- name: latexmk var_aaa4
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_aaa4'
- id: var_aaa4_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | de | default | minted | plainlatex | babel | pdfcomment | false | true | [link](${{ steps.var_aaa4_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_129d
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_de_default_minted_plainlatex_babel_none_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_129d' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | de | default | minted | plainlatex | babel | none | false | true |' >> $GITHUB_ENV
- name: Create var_129d
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=de --font=default --listings=minted --enquotes=plainlatex --tweakouterquote=babel --todo=none --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_129d'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_129d/Texlivefile'
- name: latexmk var_129d
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_129d'
- id: var_129d_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | de | default | minted | plainlatex | babel | none | false | true | [link](${{ steps.var_129d_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_80c1
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_de_default_minted_plainlatex_outerquote_pdfcomment_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_80c1' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | de | default | minted | plainlatex | outerquote | pdfcomment | false | true |' >> $GITHUB_ENV
- name: Create var_80c1
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=de --font=default --listings=minted --enquotes=plainlatex --tweakouterquote=outerquote --todo=pdfcomment --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_80c1'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_80c1/Texlivefile'
- name: latexmk var_80c1
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_80c1'
- id: var_80c1_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | de | default | minted | plainlatex | outerquote | pdfcomment | false | true | [link](${{ steps.var_80c1_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_7b9f
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_de_default_minted_plainlatex_outerquote_none_false_true' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_7b9f' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | de | default | minted | plainlatex | outerquote | none | false | true |' >> $GITHUB_ENV
- name: Create var_7b9f
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=de --font=default --listings=minted --enquotes=plainlatex --tweakouterquote=outerquote --todo=none --examples=false --howtotext=true
working-directory: '${{ github.workspace }}/var_7b9f'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_7b9f/Texlivefile'
- name: latexmk var_7b9f
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_7b9f'
- id: var_7b9f_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | de | default | minted | plainlatex | outerquote | none | false | true | [link](${{ steps.var_7b9f_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_cd7f
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_listings_csquotes_babel_pdfcomment_false_false' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_cd7f' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | listings | csquotes | babel | pdfcomment | false | false |' >> $GITHUB_ENV
- name: Create var_cd7f
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=listings --enquotes=csquotes --tweakouterquote=babel --todo=pdfcomment --examples=false --howtotext=false
working-directory: '${{ github.workspace }}/var_cd7f'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_cd7f/Texlivefile'
- name: latexmk var_cd7f
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_cd7f'
- id: var_cd7f_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | listings | csquotes | babel | pdfcomment | false | false | [link](${{ steps.var_cd7f_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_f560
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_listings_csquotes_babel_none_false_false' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_f560' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | listings | csquotes | babel | none | false | false |' >> $GITHUB_ENV
- name: Create var_f560
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=listings --enquotes=csquotes --tweakouterquote=babel --todo=none --examples=false --howtotext=false
working-directory: '${{ github.workspace }}/var_f560'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_f560/Texlivefile'
- name: latexmk var_f560
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_f560'
- id: var_f560_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | listings | csquotes | babel | none | false | false | [link](${{ steps.var_f560_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_6f53
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_listings_csquotes_outerquote_pdfcomment_false_false' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_6f53' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | listings | csquotes | outerquote | pdfcomment | false | false |' >> $GITHUB_ENV
- name: Create var_6f53
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=listings --enquotes=csquotes --tweakouterquote=outerquote --todo=pdfcomment --examples=false --howtotext=false
working-directory: '${{ github.workspace }}/var_6f53'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_6f53/Texlivefile'
- name: latexmk var_6f53
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_6f53'
- id: var_6f53_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | listings | csquotes | outerquote | pdfcomment | false | false | [link](${{ steps.var_6f53_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_8f6b
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_listings_csquotes_outerquote_none_false_false' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_8f6b' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | listings | csquotes | outerquote | none | false | false |' >> $GITHUB_ENV
- name: Create var_8f6b
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=listings --enquotes=csquotes --tweakouterquote=outerquote --todo=none --examples=false --howtotext=false
working-directory: '${{ github.workspace }}/var_8f6b'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_8f6b/Texlivefile'
- name: latexmk var_8f6b
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_8f6b'
- id: var_8f6b_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | listings | csquotes | outerquote | none | false | false | [link](${{ steps.var_8f6b_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_762d
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_listings_plainlatex_babel_pdfcomment_false_false' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_762d' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | listings | plainlatex | babel | pdfcomment | false | false |' >> $GITHUB_ENV
- name: Create var_762d
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=listings --enquotes=plainlatex --tweakouterquote=babel --todo=pdfcomment --examples=false --howtotext=false
working-directory: '${{ github.workspace }}/var_762d'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_762d/Texlivefile'
- name: latexmk var_762d
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_762d'
- id: var_762d_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | listings | plainlatex | babel | pdfcomment | false | false | [link](${{ steps.var_762d_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_c2bd
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_listings_plainlatex_babel_none_false_false' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_c2bd' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | listings | plainlatex | babel | none | false | false |' >> $GITHUB_ENV
- name: Create var_c2bd
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=listings --enquotes=plainlatex --tweakouterquote=babel --todo=none --examples=false --howtotext=false
working-directory: '${{ github.workspace }}/var_c2bd'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_c2bd/Texlivefile'
- name: latexmk var_c2bd
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_c2bd'
- id: var_c2bd_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | listings | plainlatex | babel | none | false | false | [link](${{ steps.var_c2bd_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_b036
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_listings_plainlatex_outerquote_pdfcomment_false_false' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_b036' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | listings | plainlatex | outerquote | pdfcomment | false | false |' >> $GITHUB_ENV
- name: Create var_b036
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=listings --enquotes=plainlatex --tweakouterquote=outerquote --todo=pdfcomment --examples=false --howtotext=false
working-directory: '${{ github.workspace }}/var_b036'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_b036/Texlivefile'
- name: latexmk var_b036
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_b036'
- id: var_b036_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | listings | plainlatex | outerquote | pdfcomment | false | false | [link](${{ steps.var_b036_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_de9d
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_listings_plainlatex_outerquote_none_false_false' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_de9d' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | listings | plainlatex | outerquote | none | false | false |' >> $GITHUB_ENV
- name: Create var_de9d
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=listings --enquotes=plainlatex --tweakouterquote=outerquote --todo=none --examples=false --howtotext=false
working-directory: '${{ github.workspace }}/var_de9d'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_de9d/Texlivefile'
- name: latexmk var_de9d
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_de9d'
- id: var_de9d_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | listings | plainlatex | outerquote | none | false | false | [link](${{ steps.var_de9d_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_d88c
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_minted_csquotes_babel_pdfcomment_false_false' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_d88c' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | minted | csquotes | babel | pdfcomment | false | false |' >> $GITHUB_ENV
- name: Create var_d88c
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=minted --enquotes=csquotes --tweakouterquote=babel --todo=pdfcomment --examples=false --howtotext=false
working-directory: '${{ github.workspace }}/var_d88c'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_d88c/Texlivefile'
- name: latexmk var_d88c
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_d88c'
- id: var_d88c_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | minted | csquotes | babel | pdfcomment | false | false | [link](${{ steps.var_d88c_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_9604
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_minted_csquotes_babel_none_false_false' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_9604' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | minted | csquotes | babel | none | false | false |' >> $GITHUB_ENV
- name: Create var_9604
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=minted --enquotes=csquotes --tweakouterquote=babel --todo=none --examples=false --howtotext=false
working-directory: '${{ github.workspace }}/var_9604'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_9604/Texlivefile'
- name: latexmk var_9604
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_9604'
- id: var_9604_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | minted | csquotes | babel | none | false | false | [link](${{ steps.var_9604_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_5a89
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_minted_csquotes_outerquote_pdfcomment_false_false' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_5a89' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | minted | csquotes | outerquote | pdfcomment | false | false |' >> $GITHUB_ENV
- name: Create var_5a89
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=minted --enquotes=csquotes --tweakouterquote=outerquote --todo=pdfcomment --examples=false --howtotext=false
working-directory: '${{ github.workspace }}/var_5a89'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_5a89/Texlivefile'
- name: latexmk var_5a89
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_5a89'
- id: var_5a89_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | minted | csquotes | outerquote | pdfcomment | false | false | [link](${{ steps.var_5a89_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_af45
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_minted_csquotes_outerquote_none_false_false' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_af45' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | minted | csquotes | outerquote | none | false | false |' >> $GITHUB_ENV
- name: Create var_af45
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=minted --enquotes=csquotes --tweakouterquote=outerquote --todo=none --examples=false --howtotext=false
working-directory: '${{ github.workspace }}/var_af45'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_af45/Texlivefile'
- name: latexmk var_af45
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_af45'
- id: var_af45_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | minted | csquotes | outerquote | none | false | false | [link](${{ steps.var_af45_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_aa3f
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_minted_plainlatex_babel_pdfcomment_false_false' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_aa3f' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | minted | plainlatex | babel | pdfcomment | false | false |' >> $GITHUB_ENV
- name: Create var_aa3f
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=minted --enquotes=plainlatex --tweakouterquote=babel --todo=pdfcomment --examples=false --howtotext=false
working-directory: '${{ github.workspace }}/var_aa3f'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_aa3f/Texlivefile'
- name: latexmk var_aa3f
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_aa3f'
- id: var_aa3f_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | minted | plainlatex | babel | pdfcomment | false | false | [link](${{ steps.var_aa3f_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_d9b6
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_minted_plainlatex_babel_none_false_false' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_d9b6' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | minted | plainlatex | babel | none | false | false |' >> $GITHUB_ENV
- name: Create var_d9b6
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=minted --enquotes=plainlatex --tweakouterquote=babel --todo=none --examples=false --howtotext=false
working-directory: '${{ github.workspace }}/var_d9b6'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_d9b6/Texlivefile'
- name: latexmk var_d9b6
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_d9b6'
- id: var_d9b6_u
uses: actions/upload-artifact@v4
with:
name: ${{ env.CURRENT_VARIANT }}
path: ${{ env.CURRENT_VARIANT_SHORT }}
- run: echo "TABLE=${TABLE}\n| ieee | lualatex | bibtex | 2024 | en | default | minted | plainlatex | babel | none | false | false | [link](${{ steps.var_d9b6_u.outputs.artifact-url }}) |" >> $GITHUB_ENV
- run: mkdir var_443d
- run: echo CURRENT_VARIANT='ieee_lualatex_bibtex_2024_en_default_minted_plainlatex_outerquote_pdfcomment_false_false' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_SHORT='var_443d' >> $GITHUB_ENV
- run: echo CURRENT_VARIANT_TABLE_ROW='| ieee | lualatex | bibtex | 2024 | en | default | minted | plainlatex | outerquote | pdfcomment | false | false |' >> $GITHUB_ENV
- name: Create var_443d
run: npx yo@v4.3.1 $GITHUB_WORKSPACE --documentclass=ieee --ieeevariant=peerreview --papersize=a4 --latexcompiler=lualatex --bibtextool=bibtex --overleaf=false --texlive=2024 --docker=no --lang=en --font=default --listings=minted --enquotes=plainlatex --tweakouterquote=outerquote --todo=pdfcomment --examples=false --howtotext=false
working-directory: '${{ github.workspace }}/var_443d'
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: '${{ github.workspace }}/var_443d/Texlivefile'
- name: latexmk var_443d
run: latexmk paper.tex
working-directory: '${{ github.workspace }}/var_443d'