Tom Fifield 2024-09-24 14:49:01 +08:00 zatwierdzone przez GitHub
rodzic b4c09ace23
commit 682133501a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -40,7 +40,7 @@ runs:
uses: ./.github/actions/setup-base
- name: Pull web ui
if: ${{ inputs.include-web-ui == "true" }}
if: inputs.include-web-ui == 'true'
uses: dsaltares/fetch-gh-release-asset@master
with:
repo: meshtastic/web
@ -49,7 +49,7 @@ runs:
token: ${{ inputs.github_token }}
- name: Unpack web ui
if: ${{ inputs.include-web-ui == "true" }}
if: inputs.include-web-ui == 'true'
shell: bash
run: |
tar -xf build.tar -C data/static
@ -57,7 +57,7 @@ runs:
- name: Remove debug flags for release
shell: bash
if: ${{ inputs.remove-debug-flags != "" }}
if: inputs.remove-debug-flags != ''
run: |
for PATH in ${{ inputs.remove-debug-flags }}; do
sed -i '/DDEBUG_HEAP/d' ${PATH}
@ -68,7 +68,7 @@ runs:
run: ${{ inputs.build-script-path }} ${{ inputs.board }}
- name: Pull OTA Firmware
if: ${{ inputs.ota-firmware-source != "" && inputs.ota-firmware-target != "" }}
if: inputs.ota-firmware-source != '' && inputs.ota-firmware-target != ''
uses: dsaltares/fetch-gh-release-asset@master
with:
repo: meshtastic/firmware-ota