undo break in notebook #683
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build container image | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout files in repo | |
| uses: actions/checkout@main | |
| - name: update jupyter dependencies with repo2docker | |
| uses: jupyterhub/repo2docker-action@master | |
| with: # make sure username & password/token matches your registry | |
| DOCKER_USERNAME: ${{ secrets.QUAY_USERNAME }} | |
| DOCKER_PASSWORD: ${{ secrets.QUAY_PASSWORD }} | |
| DOCKER_REGISTRY: "quay.io" | |
| IMAGE_NAME: "mikemhenry/openfe-notebooks" | |
| MYBINDERORG_CACHE: true |