File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments