Skip to content
Draft
Changes from 4 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
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,10 +207,29 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1

- name: Set up Docker Compose
uses: docker/setup-compose-action@v1
with:
cache-binary: true

- name: Checkout CKHub sharing service
uses: actions/checkout@v4
with:
repository: jupytereverywhere/sharing-service
path: ckhub-sharing-service
token: ${{ secrets.GH_PAT }}
persist-credentials: false

- name: Start CKHub sharing service
working-directory: ckhub-sharing-service
run: docker compose up --build --detach

- name: Download lite app (test mode)
uses: actions/download-artifact@v4
with:
Expand Down
Loading