Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/gitpod-web-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ jobs:
- name: Build
run: |
yarn run build:gitpod-web
yarn build:gitpod-web
yarn --cwd gitpod-web/ inject-commit-hash
- name: Docker build and push
uses: docker/build-push-action@v3
Expand Down
1 change: 1 addition & 0 deletions gitpod-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -612,6 +612,7 @@
},
"scripts": {
"vscode:prepublish": "yarn build:webview && webpack --mode production",
"inject-commit-hash": "jq '.commit = \"'$(git rev-parse --short HEAD)'\"' package.json > package.json.tmp && mv package.json.tmp package.json",
"webpack": "webpack --mode development",
"compile": "tsc -b",
"watch": "tsc -b -w",
Expand Down
2 changes: 2 additions & 0 deletions gitpod-web/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ export async function activate(context: vscode.ExtensionContext) {
return;
}

gitpodContext.logger.info(`Gitpod Web ${context.extension.packageJSON.commit || context.extension.packageJSON.version}`);

context.globalState.setKeysForSync([WELCOME_WALKTROUGH_KEY, ReleaseNotes.RELEASE_NOTES_LAST_READ_KEY]);

registerCommands(gitpodContext);
Expand Down