This repository was archived by the owner on Jan 10, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed
Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ echo "REPO_DIR: ${REPO_DIR}"
1515echo " TEMP_DIR: ${TEMP_DIR} "
1616echo " APP_DIR: ${APP_DIR} "
1717
18-
1918# Run "configure_env.sh" only once by creating an empty ".installed" file.
2019# This will always run on a github worker
2120if ! test -f ${TEMP_DIR} /.installed; then
@@ -29,14 +28,17 @@ if ! test -f ${TEMP_DIR}/.installed; then
2928fi
3029
3130${SCRIPT_DIR} /compile.sh
32- ${SCRIPT_DIR} /appimage.sh
3331
34- ARTIFACTS=" ${REPO_DIR} /artifacts"
35- echo " Copying artifacts to ${ARTIFACTS} "
32+ if [ -n " $PACKAGE_APPIMAGE " ]; then
33+ ${SCRIPT_DIR} /appimage.sh
34+
35+ ARTIFACTS=" ${REPO_DIR} /artifacts"
36+ echo " Copying artifacts to ${ARTIFACTS} "
3637
37- mkdir -p ${ARTIFACTS}
38+ mkdir -p ${ARTIFACTS}
3839
39- cp " ${TEMP_DIR} /wayvr-dashboard" " ${ARTIFACTS} /"
40- cp " ${TEMP_DIR} /WayVR_Dashboard-x86_64.AppImage" " ${ARTIFACTS} /wayvr-dashboard.AppImage"
40+ cp " ${TEMP_DIR} /wayvr-dashboard" " ${ARTIFACTS} /"
41+ cp " ${TEMP_DIR} /WayVR_Dashboard-x86_64.AppImage" " ${ARTIFACTS} /wayvr-dashboard.AppImage"
42+ fi
4143
4244echo " Build done"
Original file line number Diff line number Diff line change 88 CARGO_TERM_COLOR : always
99 SCCACHE_GHA_ENABLED : " true"
1010 RUSTC_WRAPPER : " sccache"
11+ PACKAGE_APPIMAGE : " true"
1112
1213jobs :
1314 build :
You can’t perform that action at this time.
0 commit comments