Skip to content

Binder fixed

Binder fixed #19

Workflow file for this run

name: Binder
on:
push:
branches:
- master
jobs:
binder:
name: Build
runs-on: ubuntu-latest
steps:
- name: checkout files in repo
uses: actions/checkout@v4
- name: Compute lowercase image name
id: imagename
run: echo "lower=$(echo '${{ github.repository_owner }}/${{ github.event.repository.name }}' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_OUTPUT
- name: cache binder build on mybinder.org
uses: jupyterhub/[email protected]
with:
NO_PUSH: true
IMAGE_NAME: ${{ steps.imagename.outputs.lower }}
args: --subdir binder
MYBINDERORG_TAG: ${{ github.event.ref }}