Skip to content

Commit

Permalink
VS Code Extension: Exclude developer information from the README publ…
Browse files Browse the repository at this point in the history
…ished to the VS Code Marketplace
  • Loading branch information
tronical committed Sep 19, 2024
1 parent b3dcf00 commit 6de1f4e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/nightly_snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,13 @@ jobs:
run: |
if [ "$RELEASE_INPUT" != "true" ]; then
../../scripts/prepare_vscode_nightly.sh
else
if grep -q 'lines below this marker are stripped from the release' CMakeLists.txt; then
sed -i '/lines below this marker are stripped from the release/,$ d' README.md
else
echo "Missing strip marker in VS Code Extension README. Either add or fix this script."
exit 1
fi
fi
- name: "npm install"
working-directory: editors/vscode
Expand Down
4 changes: 3 additions & 1 deletion editors/vscode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ visible, it is not necessary to save the file.

Issues should be reported in the [Slint issue tracker](https://github.com/slint-ui/slint/labels/vscode-extension).

## Building from source and debugging
<!-- lines below this marker are stripped from the release -->

## Building from Source and Debugging

The following step will build a local version of the vscode extension and the LSP

Expand Down

0 comments on commit 6de1f4e

Please sign in to comment.