Use more descriptive names

pull/862/head
probonopd 2 months ago committed by GitHub
parent 68c8356d26
commit b5427eb599
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 8
      .github/workflows/build.yml

@ -73,7 +73,7 @@ jobs:
id: upload64 id: upload64
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: build64-artifacts name: 64bit_${GITHUB_RUN_NUMBER}_$(date +%Y-%m-%d)-$(git rev-parse --short HEAD)
path: sdcard/* path: sdcard/*
build32: build32:
@ -116,7 +116,7 @@ jobs:
id: upload32 id: upload32
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: build32-artifacts name: 32bit_${GITHUB_RUN_NUMBER}_$(date +%Y-%m-%d)-$(git rev-parse --short HEAD)
path: sdcard/* path: sdcard/*
combine: combine:
@ -127,12 +127,12 @@ jobs:
- name: Download 64-bit artifacts - name: Download 64-bit artifacts
uses: actions/download-artifact@v4 uses: actions/download-artifact@v4
with: with:
name: build64-artifacts name: 64bit_${GITHUB_RUN_NUMBER}_$(date +%Y-%m-%d)-$(git rev-parse --short HEAD)
path: combined path: combined
- name: Download 32-bit artifacts - name: Download 32-bit artifacts
uses: actions/download-artifact@v4 uses: actions/download-artifact@v4
with: with:
name: build32-artifacts name: 32bit_${GITHUB_RUN_NUMBER}_$(date +%Y-%m-%d)-$(git rev-parse --short HEAD)
path: combined path: combined
- name: Create combined ZIP file - name: Create combined ZIP file
run: | run: |

Loading…
Cancel
Save