From b5427eb599b88e4c52709ed1522d13736d216288 Mon Sep 17 00:00:00 2001 From: probonopd Date: Mon, 21 Apr 2025 21:28:10 +0200 Subject: [PATCH] Use more descriptive names --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0b3c310..2f228fc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -73,7 +73,7 @@ jobs: id: upload64 uses: actions/upload-artifact@v4 with: - name: build64-artifacts + name: 64bit_${GITHUB_RUN_NUMBER}_$(date +%Y-%m-%d)-$(git rev-parse --short HEAD) path: sdcard/* build32: @@ -116,7 +116,7 @@ jobs: id: upload32 uses: actions/upload-artifact@v4 with: - name: build32-artifacts + name: 32bit_${GITHUB_RUN_NUMBER}_$(date +%Y-%m-%d)-$(git rev-parse --short HEAD) path: sdcard/* combine: @@ -127,12 +127,12 @@ jobs: - name: Download 64-bit artifacts uses: actions/download-artifact@v4 with: - name: build64-artifacts + name: 64bit_${GITHUB_RUN_NUMBER}_$(date +%Y-%m-%d)-$(git rev-parse --short HEAD) path: combined - name: Download 32-bit artifacts uses: actions/download-artifact@v4 with: - name: build32-artifacts + name: 32bit_${GITHUB_RUN_NUMBER}_$(date +%Y-%m-%d)-$(git rev-parse --short HEAD) path: combined - name: Create combined ZIP file run: |