only: We forgot the intent of 'env.full' and we need full bundle as PR build artifact #6303
This commit is contained in:
parent
8925a63be1
commit
0d396df0f6
|
@ -257,11 +257,7 @@ jobs:
|
||||||
- name: Build Firmware
|
- name: Build Firmware
|
||||||
working-directory: ./firmware/
|
working-directory: ./firmware/
|
||||||
run: |
|
run: |
|
||||||
if [ "$full" == "true" ]; then
|
bash bin/compile.sh ${{env.BOARD_META_PATH}} bundles --output-sync=recurse
|
||||||
bash bin/compile.sh ${{env.BOARD_META_PATH}} bundles --output-sync=recurse
|
|
||||||
else
|
|
||||||
bash bin/compile.sh ${{env.BOARD_META_PATH}} --output-sync=recurse all deliver/rusefi.dfu deliver/rusefi.bin
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Upload Bundle
|
- name: Upload Bundle
|
||||||
if: ${{ env.full == 'true' }}
|
if: ${{ env.full == 'true' }}
|
||||||
|
@ -328,14 +324,12 @@ jobs:
|
||||||
path: ./firmware/deliver/rusefi*.dfu
|
path: ./firmware/deliver/rusefi*.dfu
|
||||||
|
|
||||||
- name: Upload bundle artifact
|
- name: Upload bundle artifact
|
||||||
if: ${{ env.full == 'true' }}
|
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: rusefi_bundle_${{matrix.build-target}}.zip
|
name: rusefi_bundle_${{matrix.build-target}}.zip
|
||||||
path: ./artifacts/rusefi_bundle_${{matrix.build-target}}.zip
|
path: ./artifacts/rusefi_bundle_${{matrix.build-target}}.zip
|
||||||
|
|
||||||
- name: Upload github action autoupdate artifact
|
- name: Upload github action autoupdate artifact
|
||||||
if: ${{ env.full == 'true' }}
|
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: rusefi_bundle_${{matrix.build-target}}_autoupdate.zip
|
name: rusefi_bundle_${{matrix.build-target}}_autoupdate.zip
|
||||||
|
|
Loading…
Reference in New Issue