1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 21:32:13 +03:00

ci: move source archive to run only for appimage build

The nightly builds seem to often trip over each other when
uploading the source tarball from ubuntu20.

Restrict it to being built only on the appimage build (ubuntu16).
This commit is contained in:
Wez Furlong 2020-10-10 17:14:06 -07:00
parent 807ed3ba1e
commit d33647dd97
2 changed files with 1 additions and 2 deletions

View File

@ -134,8 +134,6 @@ EOF
rm -rf pkg
;;
esac
./ci/source-archive.sh
;;
*)
;;

View File

@ -251,6 +251,7 @@ cargo build --all --release""",
def package(self):
steps = [RunStep("Package", "bash ci/deploy.sh")]
if self.app_image:
steps.append(RunStep("Source Tarball", "bash ci/source-archive.sh"))
steps.append(RunStep("Build AppImage", "bash ci/appimage.sh"))
return steps