Skip to content

Commit

Permalink
Fix the environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
brichet committed Apr 8, 2024
1 parent f42ef3c commit 6c4c4bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ jobs:
extension: [collaborative, websocket]
name: Build ${{ matrix.extension }} chat extension
env:
PACKAGE: fromJSON('["jupyterlab_ws_chat", "jupyterlab_${{ matrix.extension }}_chat"]')[matrix.extension == 'websocket']
DIRECTORY: fromJSON('["packages/jupyterlab-ws-chat", "packages/jupyterlab-${{ matrix.extension }}-chat"]')[matrix.extension == 'websocket']
PACKAGE: ${{ fromJSON('["jupyterlab_ws_chat", "jupyterlab_${{ matrix.extension }}_chat"]')[matrix.extension == 'websocket'] }}
DIRECTORY: ${{ fromJSON('["packages/jupyterlab-ws-chat", "packages/jupyterlab-${{ matrix.extension }}-chat"]')[matrix.extension == 'websocket'] }}

steps:
- name: Checkout
Expand Down

0 comments on commit 6c4c4bc

Please sign in to comment.