Skip to content

Commit

Permalink
feat(WebSocketClient): try with different to syntax to inject hostname
Browse files Browse the repository at this point in the history
  • Loading branch information
JannisDommer committed Nov 3, 2023
1 parent cee36e0 commit f1ef956
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/playground_deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ jobs:
working-directory: WebSocketClient/UVLPlayground
run: npm install
- name: Set hostname for WebSocketLanguageServer
run: sed -i 's/format(languageServerHostName{0}, ':') .*/format(languageServerHostName{0}, ':') "$HOSTNAME",/' ./WebSocketClient/UVLPlayground/src/config.ts
run: |
sed -i 's/languageServerHostName: .*/languageServerHostName: "$HOSTNAME",/' ./WebSocketClient/UVLPlayground/src/config.ts
- name: Build
working-directory: WebSocketClient/UVLPlayground
run: npm run build
Expand Down

0 comments on commit f1ef956

Please sign in to comment.