File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ language: minimal
33jobs :
44 include :
55 - name : Test
6+ if : tag IS blank
67 script : ./ci/image/run.sh "yarn && yarn vscode && ./ci/ci.sh"
78 deploy : null
89 - name : Linux Release
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ set -euo pipefail
44
55main () {
66 cd " $( dirname " $0 " ) /../.."
7- soruce ./ci/lib.sh
7+ source ./ci/lib.sh
88 set_version
99
1010 if [[ ${CI:- } ]]; then
@@ -17,7 +17,7 @@ main() {
1717 imageTag+=" -arm64"
1818 latest=" codercom/code-server:arm64"
1919 fi
20- docker build -t " $imageTag " -t " $latest " -f ./ci/release-image/Dockerfile
20+ docker build -t " $imageTag " -t " $latest " -f ./ci/release-image/Dockerfile .
2121 docker push codercom/code-server
2222}
2323
Original file line number Diff line number Diff line change @@ -35,15 +35,15 @@ function main() {
3535 for binary in code-server* ; do
3636 mkdir -p " ../binary-upload"
3737
38- local prefix=" code-server-$code_server_version -"
38+ local prefix=" code-server-$VERSION -"
3939 local target=" ${binary# $prefix } "
4040 if [[ $target == " linux-x86_64" ]]; then
4141 echo " Copying $binary to ../binary-upload/latest-linux"
4242 cp " $binary " " ../binary-upload/latest-linux"
4343 fi
4444
4545 local gcp_dir
46- gcp_dir=" ../binary-upload/releases/$code_server_version /$target "
46+ gcp_dir=" ../binary-upload/releases/$VERSION /$target "
4747 mkdir -p " $gcp_dir "
4848
4949 echo " Copying $binary to $gcp_dir /code-server"
You can’t perform that action at this time.
0 commit comments