From fbd85649f9b671bb3c4cc3d74aeedb412b7335a7 Mon Sep 17 00:00:00 2001 From: Anmol Sethi Date: Wed, 27 May 2020 17:55:57 -0400 Subject: [PATCH] Fix CI --- .github/workflows/ci.yaml | 10 +++++----- doc/install.md | 3 +++ 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index dceb78a1..45d3239d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -54,10 +54,10 @@ jobs: with: name: npm-package path: ./release-npm-package - - name: Run ./ci/steps/release-static.sh + - name: Run ./ci/steps/release-standalone.sh uses: ./ci/container with: - args: ./ci/steps/release-static.sh + args: ./ci/steps/release-standalone.sh - name: Upload release artifacts uses: actions/upload-artifact@v2 with: @@ -74,10 +74,10 @@ jobs: with: name: npm-package path: ./release-npm-package - - name: Run ./ci/steps/release-static.sh + - name: Run ./ci/steps/release-standalone.sh uses: ./ci/container/arm64 with: - args: ./ci/steps/release-static.sh + args: ./ci/steps/release-standalone.sh - name: Upload release artifacts uses: actions/upload-artifact@v2 with: @@ -96,7 +96,7 @@ jobs: path: ./release-npm-package - run: brew unlink node@12 - run: brew install node - - run: ./ci/steps/release-static.sh + - run: ./ci/steps/release-standalone.sh env: # Otherwise we get rate limited when fetching the ripgrep binary. # For whatever reason only MacOS needs it. diff --git a/doc/install.md b/doc/install.md index cab44623..7698f48a 100644 --- a/doc/install.md +++ b/doc/install.md @@ -142,6 +142,9 @@ brew services start code-server We publish self contained `.tar.gz` archives for every release on [github](https://github.com/cdr/code-server/releases). They bundle the node binary and `node_modules`. +These are created from the [npm package](#yarn-npm) and the rest of the releases are created from these. +Only requirement is glibc >= 2.17 on Linux and for macOS there is no minimum system requirement. + 1. Download the latest release archive for your system from [github](https://github.com/cdr/code-server/releases). 2. Unpack the release. 3. You can run code-server by executing `./bin/code-server`.