Skip to content

Commit 869a117

Browse files
committed
Minor release process fixes
1 parent 617cd38 commit 869a117

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

ci/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ Make sure you have `$GITHUB_TOKEN` set and [hub](https://github.com/github/hub)
3636
10. Wait for the npm package to be published.
3737
11. Update the homebrew package.
3838
- Send a pull request to [homebrew-core](https://github.com/Homebrew/homebrew-core) with the URL in the [formula](https://github.com/Homebrew/homebrew-core/blob/master/Formula/code-server.rb) updated.
39-
12. Make sure to add a release without the `v` prefix for autoupdate from `3.2.0`.
4039

4140
## dev
4241

ci/dev/image/exec.sh renamed to ci/dev/image/run.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ main() {
1111
-v "$PWD:/src" \
1212
-w /src \
1313
-p 127.0.0.1:8080:8080 \
14+
-u "$(id -u):$(id -g)" \
15+
-e CI \
1416
"$(docker_build ./ci/images/debian8)" \
1517
"$@"
1618
}

doc/CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ yarn watch
4646
To develop inside of an isolated docker container:
4747

4848
```shell
49-
./ci/dev/image/exec.sh yarn
50-
./ci/dev/image/exec.sh yarn vscode
51-
./ci/dev/image/exec.sh yarn watch
49+
./ci/dev/image/run.sh yarn
50+
./ci/dev/image/run.sh yarn vscode
51+
./ci/dev/image/run.sh yarn watch
5252
```
5353

5454
`yarn watch` will live reload changes to the source.
@@ -61,7 +61,7 @@ reset VS Code then run `yarn vscode:patch`.
6161
You can build with:
6262

6363
```shell
64-
./ci/steps/release.sh
64+
./ci/dev/image/run.sh ./ci/steps/release.sh
6565
```
6666

6767
Run your build with:
@@ -76,7 +76,7 @@ node .
7676
Build release packages (make sure you run `./ci/steps/release.sh` first):
7777

7878
```
79-
./ci/dev/image/exec.sh ./ci/steps/release-packages.sh
79+
./ci/dev/image/run.sh ./ci/steps/release-packages.sh
8080
# The standalone release is in ./release-standalone
8181
# .deb, .rpm and the standalone archive are in ./release-packages
8282
```

0 commit comments

Comments
 (0)