From 483d7470417f5f0b09d20ce4cab4a4cede96eb5f Mon Sep 17 00:00:00 2001 From: Peter M Date: Sat, 21 Mar 2026 10:22:50 +0100 Subject: [PATCH] CI: rename pico combined for sorting In a release/tag the combined artifacts would be at the top away from the other pico artifacts: AtomVM-combined-pico2_w-main-latest.uf2 ... AtomVM-pico2_w-main-latest.uf2 due to alphabetical sorting - renaming fixes that. Signed-off-by: Peter M --- .github/workflows/pico-build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pico-build.yaml b/.github/workflows/pico-build.yaml index 5fb60539a0..dc6a515cae 100644 --- a/.github/workflows/pico-build.yaml +++ b/.github/workflows/pico-build.yaml @@ -240,7 +240,7 @@ jobs: if: matrix.platform == '' && matrix.jit == '' shell: bash run: | - ATOMVM_COMBINED_FILE=AtomVM-combined-${{ matrix.board }}-${{env.AVM_REF_NAME}}.uf2 + ATOMVM_COMBINED_FILE=AtomVM-${{ matrix.board }}-combined-${{env.AVM_REF_NAME}}.uf2 ./uf2tool join -o "${ATOMVM_COMBINED_FILE}" src/platforms/rp2/build/src/AtomVM-${{ matrix.board }}-${{env.AVM_REF_NAME}}.uf2 build/libs/atomvmlib-rp2-${{ matrix.board }}-${{env.AVM_REF_NAME}}.uf2 sha256sum "${ATOMVM_COMBINED_FILE}" > "${ATOMVM_COMBINED_FILE}.sha256" echo "ATOMVM_COMBINED_FILE=${ATOMVM_COMBINED_FILE}" >> $GITHUB_ENV