mirror of
https://github.com/cdr/code-server.git
synced 2026-01-13 11:43:43 +01:00
Compare commits
9 commits
main
...
v4.9.0-rc.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0f66360646 | ||
|
|
130f52e6b7 | ||
|
|
c9279ccbe4 | ||
|
|
fc4d2b532f | ||
|
|
9efbd2d59c | ||
|
|
ccf882f830 | ||
|
|
96b3c3e024 | ||
|
|
17d41135f3 | ||
|
|
9694242b2f |
4 changed files with 11 additions and 1 deletions
2
.github/workflows/build.yaml
vendored
2
.github/workflows/build.yaml
vendored
|
|
@ -296,7 +296,7 @@ jobs:
|
|||
name: Run e2e tests
|
||||
needs: build
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 15
|
||||
timeout-minutes: 25
|
||||
steps:
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v3
|
||||
|
|
|
|||
2
.github/workflows/release.yaml
vendored
2
.github/workflows/release.yaml
vendored
|
|
@ -322,6 +322,8 @@ jobs:
|
|||
echo "Updating version in lib/vscode/product.json"
|
||||
tmp=$(mktemp)
|
||||
jq '.codeServerVersion = "$VERSION"' release/lib/vscode/product.json > "$tmp" && mv "$tmp" release/lib/vscode/product.json
|
||||
# Ensure it has the same permissions as before
|
||||
chmod 755 release/lib/vscode/product.json
|
||||
|
||||
- name: Compress release package
|
||||
run: tar -czf package.tar.gz release
|
||||
|
|
|
|||
|
|
@ -20,6 +20,12 @@ Code v99.99.999
|
|||
|
||||
-->
|
||||
|
||||
## [4.9.0](https://github.com/coder/code-server/releases/tag/v4.9.0) - 2022-11-14
|
||||
|
||||
Code v1.73.0
|
||||
|
||||
WIP
|
||||
|
||||
## [4.8.3](https://github.com/coder/code-server/releases/tag/v4.8.3) - 2022-11-07
|
||||
|
||||
Code v1.72.1
|
||||
|
|
|
|||
|
|
@ -96,6 +96,8 @@ main() {
|
|||
EOF
|
||||
) > product.json
|
||||
|
||||
chmod +x product.json
|
||||
|
||||
# Any platform here works since we will do our own packaging. We have to do
|
||||
# this because we have an NPM package that could be installed on any platform.
|
||||
# The correct platform dependencies and scripts will be installed as part of
|
||||
|
|
|
|||
Loading…
Reference in a new issue