only: improving step names

This commit is contained in:
rusefi 2024-02-25 12:03:40 -05:00
parent 44acbb06f5
commit 90502896b8
2 changed files with 15 additions and 15 deletions

View File

@ -613,7 +613,7 @@ jobs:
allowUpdates: true
prerelease: true
- name: Upload .ini files to server
- name: Upload .ini files to rusEFI Online server
if: ${{ env.full == 'true' }}
working-directory: ./firmware
run: |
@ -621,28 +621,28 @@ jobs:
cd tunerstudio/generated
../upload_ini.sh ${{ secrets.RUSEFI_ONLINE_FTP_USER }} ${{ secrets.RUSEFI_ONLINE_FTP_PASS }} ${{ secrets.RUSEFI_FTP_SERVER }}
- name: Upload build elf artifact
- name: Upload github action elf artifact
if: ${{ env.partial == 'true' }}
uses: actions/upload-artifact@v4
with:
name: rusefi_${{matrix.build-target}}.elf
path: ./firmware/build/rusefi.elf
- name: Upload build map artifact
- name: Upload github action map artifact
if: ${{ env.partial == 'true' }}
uses: actions/upload-artifact@v4
with:
name: rusefi_${{matrix.build-target}}.map
path: ./firmware/build/rusefi.map
- name: Upload build bin artifact
- name: Upload github action bin artifact
if: ${{ env.partial == 'true' }}
uses: actions/upload-artifact@v4
with:
name: rusefi_${{matrix.build-target}}.bin
path: ./firmware/deliver/rusefi*.bin
- name: Upload build hex artifact
- name: Upload github action hex artifact
if: ${{ env.partial == 'true' }}
uses: actions/upload-artifact@v4
with:
@ -651,7 +651,7 @@ jobs:
# todo: we should produce .hex in both OpenBLT and non-OpenBLT case same as we do for .bin and .elf
path: ./firmware/build/rusefi*.hex
- name: Upload build dfu artifact
- name: Upload github action dfu artifact
if: ${{ env.partial == 'true' }}
uses: actions/upload-artifact@v4
with:
@ -665,7 +665,7 @@ jobs:
name: rusefi_bundle_${{matrix.build-target}}.zip
path: ./artifacts/rusefi_bundle*.zip
- name: Upload autoupdate bundle artifact
- name: Upload github action autoupdate artifact
if: ${{ env.full == 'true' }}
uses: actions/upload-artifact@v4
with:

View File

@ -166,7 +166,7 @@ jobs:
with:
github_token: ${{ github.token }}
- name: Upload .ini files to server
- name: Upload .ini files to rusEFI Online server
working-directory: generated/tunerstudio/generated
run: ../../../${{inputs.rusefi_dir}}/firmware/tunerstudio/upload_ini.sh ${{ secrets.RUSEFI_ONLINE_FTP_USER }} ${{ secrets.RUSEFI_ONLINE_FTP_PASS }} ${{ secrets.RUSEFI_FTP_SERVER }}
@ -174,37 +174,37 @@ jobs:
working-directory: ${{inputs.rusefi_dir}}/firmware
run: bash bin/compile.sh -b ${{ env.BOARD_META_PATH }} deliver/rusefi.bin
- name: Upload build bin artifact
- name: Upload github action bin artifact
uses: actions/upload-artifact@v4
with:
name: rusefi.bin
path: ${{inputs.rusefi_dir}}/firmware/deliver/rusefi*.bin
- name: Upload build srec artifact
- name: Upload github action srec artifact
uses: actions/upload-artifact@v4
with:
name: rusefi_update.srec
path: ${{inputs.rusefi_dir}}/firmware/build/rusefi.srec
- name: Upload build hex artifact
- name: Upload github action hex artifact
uses: actions/upload-artifact@v4
with:
name: rusefi.hex
path: ${{inputs.rusefi_dir}}/firmware/build/rusefi*.hex
- name: Upload build list artifact
- name: Upload github action list artifact
uses: actions/upload-artifact@v4
with:
name: rusefi.list
path: ${{inputs.rusefi_dir}}/firmware/build/rusefi*.list
- name: Upload build map artifact
- name: Upload github action map artifact
uses: actions/upload-artifact@v4
with:
name: rusefi.map
path: ${{inputs.rusefi_dir}}/firmware/build/rusefi*.map
- name: Upload build elf artifact
- name: Upload github action elf artifact
uses: actions/upload-artifact@v4
with:
name: rusefi.elf
@ -223,7 +223,7 @@ jobs:
echo "NOT setting credentials: ${{github.event_name}} ${{github.ref}}"
fi
- name: Upload bundle artifact
- name: Upload github action bundle artifact
uses: actions/upload-artifact@v4
with:
name: rusefi_bundle_${{env.SHORT_BOARD_NAME}}.zip