From 17d59f4729d4509ce07755c6357b24ae9fa937ac Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Wed, 17 Apr 2024 13:00:38 +0100 Subject: [PATCH] CI: Scannable artifact and release names. When I go to fetch an artifact for a MicroPython build my brain is always confounded by the repetition of "pimoroni-" before each file. Change the names so the product is up-front, so the list is easier to scan-read through. --- .github/workflows/micropython.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/micropython.yml b/.github/workflows/micropython.yml index 454ad040..b3ed7ec6 100644 --- a/.github/workflows/micropython.yml +++ b/.github/workflows/micropython.yml @@ -42,7 +42,7 @@ jobs: env: # MicroPython version will be contained in github.event.release.tag_name for releases - RELEASE_FILE: pimoroni-${{ matrix.name }}-${{ github.event.release.tag_name || github.sha }}-micropython + RELEASE_FILE: ${{ matrix.name }}-${{ github.event.release.tag_name || github.sha }}-pimoroni-micropython PIMORONI_PICO_DIR: "${{ github.workspace }}/pimoroni-pico-${{ github.sha }}" MICROPY_BOARD_DIR: "${{ github.workspace }}/pimoroni-pico-${{ github.sha }}/micropython/board/${{ matrix.BOARD }}" USER_C_MODULES: "${{ github.workspace }}/pimoroni-pico-${{ github.sha }}/micropython/modules/micropython-${{ matrix.name }}.cmake"