From f1ff9a331fc720aed768a43e3e4a84e254851198 Mon Sep 17 00:00:00 2001 From: GameTec_live Date: Sat, 8 Feb 2025 17:46:47 +0100 Subject: [PATCH] fix: try naming it differently? --- .github/workflows/build_client.yml | 4 ++-- .github/workflows/build_firmware.yml | 6 +++--- .github/workflows/on_push.yml | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build_client.yml b/.github/workflows/build_client.yml index 973bb21..29fa2be 100644 --- a/.github/workflows/build_client.yml +++ b/.github/workflows/build_client.yml @@ -35,7 +35,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Check out the repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ inputs.checkout-sha == null && github.sha || inputs.checkout-sha }} - name: Set up Python @@ -70,5 +70,5 @@ jobs: - name: Upload release artifacts uses: actions/upload-artifact@v4 with: - name: release-artifacts + name: ${{ matrix.name }}-release-artifacts path: client-${{ matrix.name }}.zip diff --git a/.github/workflows/build_firmware.yml b/.github/workflows/build_firmware.yml index ada5396..1ad8d09 100644 --- a/.github/workflows/build_firmware.yml +++ b/.github/workflows/build_firmware.yml @@ -20,7 +20,7 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Check out the repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ inputs.checkout-sha == null && github.sha || inputs.checkout-sha }} fetch-depth: 0 @@ -54,7 +54,7 @@ jobs: device_type: [ultra, lite] steps: - name: Check out the repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ inputs.checkout-sha == null && github.sha || inputs.checkout-sha }} fetch-depth: 0 @@ -94,5 +94,5 @@ jobs: - name: Upload release artifacts uses: actions/upload-artifact@v4 with: - name: release-artifacts + name: ${{ matrix.device_type }}-release-artifacts path: firmware/objects/*.zip diff --git a/.github/workflows/on_push.yml b/.github/workflows/on_push.yml index 08c228e..115e62a 100644 --- a/.github/workflows/on_push.yml +++ b/.github/workflows/on_push.yml @@ -24,9 +24,9 @@ jobs: - client_pipeline steps: - name: Check out the repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download release artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: release-artifacts path: release-artifacts @@ -60,9 +60,9 @@ jobs: - client_pipeline steps: - name: Check out the repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download release artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: release-artifacts path: release-artifacts