@@ -306,28 +306,28 @@ jobs:
306306 echo "INSTALLER_ARCHIVE=$(cat installer-archive.filename)" >>$GITHUB_ENV
307307 if : github.event_name == 'push' && contains(github.ref, 'refs/tags')
308308
309- - name : Build ${{ runner.os }} fileio binary.
309+ - name : Build ${{ runner.os }} swift-files binary.
310310 run : |
311- cargo build --bin fileio --features="env_logger,indicatif" --release
311+ cargo build --bin swift-files --features="env_logger,indicatif" --release
312312 # Building on Mac currently not working (DEVINFRA-612)
313313 if : matrix.os.name != 'windows-2019' && matrix.os.name != 'macos-10.15'
314314
315- - name : Build ${{ runner.os }} fileio binary.
315+ - name : Build ${{ runner.os }} swift-files binary.
316316 run : |
317- cargo build --bin fileio --features="env_logger,indicatif" --release
317+ cargo build --bin swift-files --features="env_logger,indicatif" --release
318318 env :
319319 LIBCLANG_PATH : ${{ env.LIBCLANG_PATH_WIN }}
320320 if : matrix.os.name == 'windows-2019'
321321
322- - name : Build ${{ runner.os }} piksi -settings binary.
322+ - name : Build ${{ runner.os }} swift -settings binary.
323323 run : |
324- cargo build --bin piksi -settings --features="env_logger" --release
324+ cargo build --bin swift -settings --features="env_logger" --release
325325 # Building on Mac currently not working (DEVINFRA-612)
326326 if : matrix.os.name != 'windows-2019' && matrix.os.name != 'macos-10.15'
327327
328- - name : Build ${{ runner.os }} piksi -settings binary.
328+ - name : Build ${{ runner.os }} swift -settings binary.
329329 run : |
330- cargo build --bin piksi -settings --features="env_logger" --release
330+ cargo build --bin swift -settings --features="env_logger" --release
331331 env :
332332 LIBCLANG_PATH : ${{ env.LIBCLANG_PATH_WIN }}
333333 if : matrix.os.name == 'windows-2019'
@@ -363,12 +363,12 @@ jobs:
363363 release-archive.filename
364364 - uses : actions/upload-artifact@v2
365365 with :
366- name : fileio_ ${{ matrix.os.short_name }}
367- path : ./target/release/fileio ${{ matrix.os.exe_suffix }}
366+ name : swift-files_ ${{ matrix.os.short_name }}
367+ path : ./target/release/swift-files ${{ matrix.os.exe_suffix }}
368368 - uses : actions/upload-artifact@v2
369369 with :
370- name : piksi -settings_${{ matrix.os.short_name }}
371- path : ./target/release/piksi -settings${{ matrix.os.exe_suffix }}
370+ name : swift -settings_${{ matrix.os.short_name }}
371+ path : ./target/release/swift -settings${{ matrix.os.exe_suffix }}
372372 - uses : actions/upload-artifact@v2
373373 with :
374374 name : ${{ runner.os }}-artifacts-debug
@@ -533,30 +533,30 @@ jobs:
533533 with :
534534 name : Windows-installer-signed
535535 path : windows
536- - name : Pull Windows fileio
536+ - name : Pull Windows swift-files
537537 uses : actions/download-artifact@v2
538538 with :
539- name : fileio_windows
539+ name : swift-files_windows
540540 path : windows
541- - name : Pull Windows piksi -settings
541+ - name : Pull Windows swift -settings
542542 uses : actions/download-artifact@v2
543543 with :
544- name : piksi -settings_windows
544+ name : swift -settings_windows
545545 path : windows
546546 - name : Pull Linux Installer
547547 uses : actions/download-artifact@v2
548548 with :
549549 name : Linux-installer
550550 path : linux
551- - name : Pull Linux fileio
551+ - name : Pull Linux swift-files
552552 uses : actions/download-artifact@v2
553553 with :
554- name : fileio_linux
554+ name : swift-files_linux
555555 path : linux
556- - name : Pull Linux piksi -settings
556+ - name : Pull Linux swift -settings
557557 uses : actions/download-artifact@v2
558558 with :
559- name : piksi -settings_linux
559+ name : swift -settings_linux
560560 path : linux
561561 - name : Pull macOS Installer
562562 uses : actions/download-artifact@v2
@@ -567,10 +567,10 @@ jobs:
567567 - name : Prepare Release
568568 shell : bash
569569 run : |
570- mv linux/fileio linux/fileio_ ${{ env.VERSION }}_linux
571- mv linux/piksi -settings linux/piksi -settings_${{ env.VERSION }}_linux
572- mv windows/fileio .exe windows/fileio_ ${{ env.VERSION }}_windows.exe
573- mv windows/piksi -settings.exe windows/piksi -settings_${{ env.VERSION }}_windows.exe
570+ mv linux/swift-files linux/swift-files_ ${{ env.VERSION }}_linux
571+ mv linux/swift -settings linux/swift -settings_${{ env.VERSION }}_linux
572+ mv windows/swift-files .exe windows/swift-files_ ${{ env.VERSION }}_windows.exe
573+ mv windows/swift -settings.exe windows/swift -settings_${{ env.VERSION }}_windows.exe
574574 echo "WINDOWS_ARCHIVE=$(cat windows/installer-archive.filename)" >>$GITHUB_ENV
575575 echo "LINUX_ARCHIVE=$(cat linux/installer-archive.filename)" >>$GITHUB_ENV
576576 echo "MACOS_ARCHIVE=$(cat macos/installer-archive.filename)" >>$GITHUB_ENV
@@ -580,11 +580,11 @@ jobs:
580580 name : " ${{ env.VERSION }}-${{ env.DATE }}"
581581 files : |
582582 windows/${{ env.WINDOWS_ARCHIVE }}
583- windows/fileio_ ${{ env.VERSION }}_windows.exe
584- windows/piksi -settings_${{ env.VERSION }}_windows.exe
583+ windows/swift-files_ ${{ env.VERSION }}_windows.exe
584+ windows/swift -settings_${{ env.VERSION }}_windows.exe
585585 linux/${{ env.LINUX_ARCHIVE }}
586- linux/fileio_ ${{ env.VERSION }}_linux
587- linux/piksi -settings_${{ env.VERSION }}_linux
586+ linux/swift-files_ ${{ env.VERSION }}_linux
587+ linux/swift -settings_${{ env.VERSION }}_linux
588588 macos/${{ env.MACOS_ARCHIVE }}
589589 env :
590590 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
0 commit comments