diff --git a/README.md b/README.md index 0ee28c0f9c40ad40dea9a63dc0d5165b1b2c62f8..f9bac4a3923f47862f6ad2db481c3af37a2a1a6f 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,8 @@ Run [VS Code](https://github.com/Microsoft/vscode) on any machine anywhere and a For a full setup and walkthrough, please see [./doc/guide.md](./doc/guide.md). +### Quick Install + We have a [script](./install.sh) to install code-server for Linux and macOS. It tries to use the system package manager if possible. @@ -36,14 +38,10 @@ curl -fsSL https://code-server.dev/install.sh | sh The install script will print out how to run and start using code-server. -If you believe an install script used with `curl | sh` is insecure, please give -[this wonderful blogpost](https://sandstorm.io/news/2015-09-24-is-curl-bash-insecure-pgp-verified-install) by -[sandstorm.io](https://sandstorm.io) a read. +### Manual Install Docs on the install script, manual installation and docker image are at [./doc/install.md](./doc/install.md). -We also highly recommend reading the [FAQ](./doc/FAQ.md) on the [Differences compared to VS Code](./doc/FAQ.md#differences-compared-to-vs-code). - ## FAQ See [./doc/FAQ.md](./doc/FAQ.md). diff --git a/ci/README.md b/ci/README.md index 9624988bf2db8175d31ff70e735d17e4dba6ca3b..310d1931c591ef167f5b012958310436e1356e0e 100644 --- a/ci/README.md +++ b/ci/README.md @@ -22,10 +22,11 @@ Make sure you have `$GITHUB_TOKEN` set and [hub](https://github.com/github/hub) the updated version. 1. Summarize the major changes in the release notes and link to the relevant issues. 4. Wait for the artifacts in step 2 to build. -5. Run `yarn release:github-assets` to download the `release-packages` artifact and then +5. Run `yarn release:github-assets` to download the `release-packages` artifact and upload them to the draft release. 6. Run some basic sanity tests on one of the released packages. -7. Make sure the github release tag is the commit with the artifacts. +7. Make sure the github release tag is the commit with the artifacts. This is a bug in + `hub` where uploading assets in step 5 will break the tag. 8. Publish the release and merge the PR. 1. CI will automatically grab the artifacts and then: 1. Publish the NPM package from `npm-package`. diff --git a/ci/build/release-github-assets.sh b/ci/build/release-github-assets.sh index 7fba67703fe5ac037fb33781c910e748ec5668eb..f2d9ff8c364e9204adb21a3d4859f44869f07c31 100755 --- a/ci/build/release-github-assets.sh +++ b/ci/build/release-github-assets.sh @@ -11,7 +11,7 @@ main() { source ./ci/lib.sh download_artifact release-packages ./release-packages - local assets=(./release-packages/code-server*"$VERSION"*{.tar.gz,.deb,.rpm}) + local assets=(./release-packages/code-server*"$VERSION"*{.tar.gz,.zip,.deb,.rpm}) for i in "${!assets[@]}"; do assets[$i]="--attach=${assets[$i]}" done diff --git a/doc/guide.md b/doc/guide.md index 2cd72091358eaec1d751be7d26ebe08f08b26711..beba49d78c1a427d5f699ee2b4f8bef1193b3ca2 100644 --- a/doc/guide.md +++ b/doc/guide.md @@ -25,6 +25,8 @@ Further docs are at: - [FAQ](./FAQ.md) for common questions. - [CONTRIBUTING](../doc/CONTRIBUTING.md) for development docs +We highly recommend reading the [FAQ](./doc/FAQ.md) on the [Differences compared to VS Code](./doc/FAQ.md#differences-compared-to-vs-code) before beginning. + We'll walk you through acquiring a remote machine to run `code-server` on and then exposing `code-server` so you can securely access it. diff --git a/doc/install.md b/doc/install.md index bd0fac48e88e31f325448755cd4479032abb4e1a..d47edc8c453cb6f862b87baf5bf688bf8d738818 100644 --- a/doc/install.md +++ b/doc/install.md @@ -4,7 +4,7 @@ - [install.sh](#installsh) - [Flags](#flags) - - [Detect Reference](#detect-reference) + - [Detection Reference](#detection-reference) - [Debian, Ubuntu](#debian-ubuntu) - [Fedora, CentOS, RHEL, SUSE](#fedora-centos-rhel-suse) - [Arch Linux](#arch-linux) @@ -42,7 +42,7 @@ If you believe an install script used with `curl | sh` is insecure, please give [this wonderful blogpost](https://sandstorm.io/news/2015-09-24-is-curl-bash-insecure-pgp-verified-install) by [sandstorm.io](https://sandstorm.io) a read. -If you'd still prefer manual installation despite the below [detect reference](#detect-reference) and `--dry-run` +If you'd still prefer manual installation despite the below [detection reference](#detection-reference) and `--dry-run` then continue on for docs on manual installation. The [`install.sh`](../install.sh) script runs the _exact_ same commands presented in the rest of this document. @@ -56,7 +56,7 @@ commands presented in the rest of this document. - `--version=X.X.X` to install version `X.X.X` instead of latest. - `--help` to see full usage docs. -### Detect Reference +### Detection Reference - For Debian, Ubuntu and Raspbian it will install the latest deb package. - For Fedora, CentOS, RHEL and openSUSE it will install the latest rpm package.