summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhathach <[email protected]>2026-02-11 18:17:16 +0700
committerhathach <[email protected]>2026-02-11 19:18:17 +0700
commit8c9901c31892e9213acc52538cc56c7cb24883b0 (patch)
tree7376ca48a7aa7b18ece35ed1807c3a8bd513c0a6
parent9bba4373bf74181f75a8fdf93c8574ca3d4b4f43 (diff)
correct membrowse upload step
-rw-r--r--.github/workflows/build_util.yml7
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/build_util.yml b/.github/workflows/build_util.yml
index 4200c11bd..1a119b132 100644
--- a/.github/workflows/build_util.yml
+++ b/.github/workflows/build_util.yml
@@ -79,13 +79,12 @@ jobs:
shell: bash
- name: Membrowse Upload
- if: inputs.toolchain != 'esp-idf'
+ if: inputs.toolchain != 'esp-idf' && inputs.upload-membrowse == true
env:
MEMBROWSE_API_KEY: ${{ secrets.MEMBROWSE_API_KEY }}
run: |
- if [ "${{ inputs.upload-membrowse }}" = "true" ]; then
- python tools/build.py $BUILD_PY_ARGS --target examples-membrowse-upload ${{ matrix.arg }}
- fi
+ BUILD_PY_ARGS="-s ${{ inputs.build-system }} ${{ steps.setup-toolchain.outputs.build_option }} ${{ inputs.build-options }}"
+ python tools/build.py $BUILD_PY_ARGS --target examples-membrowse-upload -j 1 ${{ matrix.arg }}
shell: bash
- name: Upload Artifacts for Metrics