Skip to content

Commit e61101b

Browse files
committed
workflows: debos: Use specific artifacts name
This is in preparation of other files that will be uploaded in a separate step. Signed-off-by: Loïc Minier <[email protected]>
1 parent 4b15a29 commit e61101b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/debos.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -90,19 +90,19 @@ jobs:
9090
run: |
9191
set -ux
9292
# create a directory for the current run
93-
BUILD_DIR="./uploads"
94-
mkdir -vp "${BUILD_DIR}"
93+
dir="debos-artifacts"
94+
mkdir -v "${dir}"
9595
# copy output files
96-
cp -av rootfs.tar.gz "${BUILD_DIR}"
97-
cp -av dtbs.tar.gz "${BUILD_DIR}"
98-
cp -av disk-ufs.img.gz "${BUILD_DIR}"
99-
cp -av disk-sdcard.img.gz "${BUILD_DIR}"
96+
cp -av rootfs.tar.gz "${dir}"
97+
cp -av dtbs.tar.gz "${dir}"
98+
cp -av disk-ufs.img.gz "${dir}"
99+
cp -av disk-sdcard.img.gz "${dir}"
100100
# TODO: separate flash_* directories between UFS and eMMC
101-
tar -cvf "${BUILD_DIR}"/flash-ufs.tar.gz \
101+
tar -cvf "${dir}"/flash-ufs.tar.gz \
102102
disk-ufs.img1 \
103103
disk-ufs.img2 \
104104
flash_rb3*
105-
tar -cvf "${BUILD_DIR}"/flash-emmc.tar.gz \
105+
tar -cvf "${dir}"/flash-emmc.tar.gz \
106106
disk-sdcard.img1 \
107107
disk-sdcard.img2 \
108108
flash_rb1*
@@ -111,4 +111,4 @@ jobs:
111111
uses: qualcomm-linux/upload-private-artifact-action@v1
112112
id: upload_artifacts
113113
with:
114-
path: ./uploads
114+
path: debos-artifacts

0 commit comments

Comments
 (0)