@@ -104,13 +104,13 @@ jobs:
104
104
- name : Capture build folder as artifact
105
105
if : ${{ failure() }}
106
106
shell : bash
107
- run : tar cfz build.tgz build
107
+ run : tar cfz build.tar.gz build
108
108
- name : Upload build folder
109
109
if : ${{ failure() }}
110
110
uses : actions/upload-artifact@v4
111
111
with :
112
112
name : windows-build-folder
113
- path : build.tgz
113
+ path : build.tar.gz
114
114
- name : Capture installed folder as artifact
115
115
shell : bash
116
116
run : |
@@ -185,23 +185,23 @@ jobs:
185
185
- name : Capture build folder as artifact
186
186
if : ${{ failure() }}
187
187
shell : bash
188
- run : tar cfz build.tgz build
188
+ run : tar cfz build.tar.gz build
189
189
- name : Upload build folder
190
190
if : ${{ failure() }}
191
191
uses : actions/upload-artifact@v4
192
192
with :
193
193
name : macos-build-folder
194
- path : build.tgz
194
+ path : build.tar.gz
195
195
- name : Capture installed folder as artifact
196
196
shell : bash
197
197
run : |
198
- tar -c -v -f cwipc_osx1015_${{ github.ref_name }}.tgz -z -C installed .
198
+ tar -c -v -f cwipc_osx1015_${{ github.ref_name }}.tar.gz -z -C installed .
199
199
ls -l
200
200
- name : Upload installed folder
201
201
uses : actions/upload-artifact@v4
202
202
with :
203
- name : cwipc_osx1015_${{ github.ref_name }}.tgz
204
- path : cwipc_osx1015_${{ github.ref_name }}.tgz
203
+ name : cwipc_osx1015_${{ github.ref_name }}.tar.gz
204
+ path : cwipc_osx1015_${{ github.ref_name }}.tar.gz
205
205
206
206
build-ubuntu2204 :
207
207
name : build-ubuntu2204
@@ -251,23 +251,23 @@ jobs:
251
251
- name : Capture build folder as artifact
252
252
if : ${{ failure() }}
253
253
shell : bash
254
- run : tar cfz build.tgz build
254
+ run : tar cfz build.tar.gz build
255
255
- name : Upload build folder
256
256
if : ${{ failure() }}
257
257
uses : actions/upload-artifact@v4
258
258
with :
259
259
name : ubuntu2204-build-folder
260
- path : build.tgz
260
+ path : build.tar.gz
261
261
- name : Capture installed folder as artifact
262
262
shell : bash
263
263
run : |
264
- tar -c -v -f cwipc_ubuntu2204_${{ github.ref_name }}.tgz -z -C installed .
264
+ tar -c -v -f cwipc_ubuntu2204_${{ github.ref_name }}.tar.gz -z -C installed .
265
265
ls -la
266
266
- name : Upload installed folder
267
267
uses : actions/upload-artifact@v4
268
268
with :
269
- name : cwipc_ubuntu2204_${{ github.ref_name }}.tgz
270
- path : cwipc_ubuntu2204_${{ github.ref_name }}.tgz
269
+ name : cwipc_ubuntu2204_${{ github.ref_name }}.tar.gz
270
+ path : cwipc_ubuntu2204_${{ github.ref_name }}.tar.gz
271
271
- name : Upload debian package
272
272
uses : actions/upload-artifact@v4
273
273
with :
@@ -344,13 +344,13 @@ jobs:
344
344
- name : Capture build folder as artifact
345
345
if : ${{ failure() }}
346
346
shell : bash
347
- run : tar cfz build.tgz build
347
+ run : tar cfz build.tar.gz build
348
348
- name : Upload build folder
349
349
if : ${{ failure() }}
350
350
uses : actions/upload-artifact@v4
351
351
with :
352
352
name : android-build-folder
353
- path : build.tgz
353
+ path : build.tar.gz
354
354
355
355
- name : Upload installer package
356
356
uses : actions/upload-artifact@v4
@@ -407,23 +407,23 @@ jobs:
407
407
- name : Capture build folder as artifact
408
408
if : ${{ failure() }}
409
409
shell : bash
410
- run : tar cfz build.tgz build
410
+ run : tar cfz build.tar.gz build
411
411
- name : Upload build folder
412
412
if : ${{ failure() }}
413
413
uses : actions/upload-artifact@v4
414
414
with :
415
415
name : ubuntu2404-build-folder
416
- path : build.tgz
416
+ path : build.tar.gz
417
417
- name : Capture installed folder as artifact
418
418
shell : bash
419
419
run : |
420
- tar -c -v -f cwipc_ubuntu2404_${{ github.ref_name }}.tgz -z -C installed .
420
+ tar -c -v -f cwipc_ubuntu2404_${{ github.ref_name }}.tar.gz -z -C installed .
421
421
ls -la
422
422
- name : Upload installed folder
423
423
uses : actions/upload-artifact@v4
424
424
with :
425
- name : cwipc_ubuntu2404_${{ github.ref_name }}.tgz
426
- path : cwipc_ubuntu2404_${{ github.ref_name }}.tgz
425
+ name : cwipc_ubuntu2404_${{ github.ref_name }}.tar.gz
426
+ path : cwipc_ubuntu2404_${{ github.ref_name }}.tar.gz
427
427
- name : Upload debian package
428
428
uses : actions/upload-artifact@v4
429
429
with :
@@ -479,12 +479,12 @@ jobs:
479
479
- name : Download MacOS installed folder
480
480
uses : actions/download-artifact@v4
481
481
with :
482
- name : cwipc_osx1015_${{ github.ref_name }}.tgz
482
+ name : cwipc_osx1015_${{ github.ref_name }}.tar.gz
483
483
path : ../Assets/
484
484
- name : Download Ubuntu 22.04 installed folder
485
485
uses : actions/download-artifact@v4
486
486
with :
487
- name : cwipc_ubuntu2204_${{ github.ref_name }}.tgz
487
+ name : cwipc_ubuntu2204_${{ github.ref_name }}.tar.gz
488
488
path : ../Assets/
489
489
- name : Download debian package for 22.04
490
490
uses : actions/download-artifact@v4
@@ -494,7 +494,7 @@ jobs:
494
494
- name : Download Ubuntu 24.04 installed folder
495
495
uses : actions/download-artifact@v4
496
496
with :
497
- name : cwipc_ubuntu2404_${{ github.ref_name }}.tgz
497
+ name : cwipc_ubuntu2404_${{ github.ref_name }}.tar.gz
498
498
path : ../Assets/
499
499
- name : Download debian package for 24.04
500
500
uses : actions/download-artifact@v4
@@ -607,24 +607,24 @@ jobs:
607
607
GITHUB_TOKEN : ${{ github.token }}
608
608
with :
609
609
upload_url : ${{ steps.create_release.outputs.upload_url }}
610
- asset_path : ../Assets/cwipc_osx1015_${{ github.ref_name }}.tgz
611
- asset_name : cwipc-macos1014-intel-${{ github.ref_name }}-built.tgz
610
+ asset_path : ../Assets/cwipc_osx1015_${{ github.ref_name }}.tar.gz
611
+ asset_name : cwipc-macos1014-intel-${{ github.ref_name }}-built.tar.gz
612
612
asset_content_type : application/gzip
613
613
- name : Upload Ubuntu 22.04 installed folder
614
614
uses : actions/upload-release-asset@v1
615
615
env :
616
616
GITHUB_TOKEN : ${{ github.token }}
617
617
with :
618
618
upload_url : ${{ steps.create_release.outputs.upload_url }}
619
- asset_path : ../Assets/cwipc_ubuntu2204_${{ github.ref_name }}.tgz
620
- asset_name : cwipc-ubuntu2204-${{ github.ref_name }}-built.tgz
619
+ asset_path : ../Assets/cwipc_ubuntu2204_${{ github.ref_name }}.tar.gz
620
+ asset_name : cwipc-ubuntu2204-${{ github.ref_name }}-built.tar.gz
621
621
asset_content_type : application/gzip
622
622
- name : Upload Ubuntu 24.04 installed folder
623
623
uses : actions/upload-release-asset@v1
624
624
env :
625
625
GITHUB_TOKEN : ${{ github.token }}
626
626
with :
627
627
upload_url : ${{ steps.create_release.outputs.upload_url }}
628
- asset_path : ../Assets/cwipc_ubuntu2404_${{ github.ref_name }}.tgz
629
- asset_name : cwipc-ubuntu2404-${{ github.ref_name }}-built.tgz
628
+ asset_path : ../Assets/cwipc_ubuntu2404_${{ github.ref_name }}.tar.gz
629
+ asset_name : cwipc-ubuntu2404-${{ github.ref_name }}-built.tar.gz
630
630
asset_content_type : application/gzip
0 commit comments