Skip to content

Merge branch 'main' of https://github.com/NREL/pyvisco #8

Merge branch 'main' of https://github.com/NREL/pyvisco

Merge branch 'main' of https://github.com/NREL/pyvisco #8

Workflow file for this run

name: Binder
on: [push]
# Cache on mybinder.org
# jobs:
# Create-MyBinderOrg-Cache:
# runs-on: ubuntu-latest
# steps:
# - name: cache binder build on mybinder.org
# uses: jupyterhub/repo2docker-action@master
# with:
# NO_PUSH: true
# MYBINDERORG_TAG: ${{ github.event.ref }} # This builds the container on mybinder.org with the branch that was pushed on.
# Push to dockerhub
jobs:
binder:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: update jupyter dependencies with repo2docker
uses: jupyterhub/repo2docker-action@master
with:
DOCKER_USERNAME: ${{ secrets.DOCKERHUB_NREL_USER }}
DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_NREL_TOKEN }}
BINDER_CACHE: true
PUBLIC_REGISTRY_CHECK: true
MYBINDERORG_TAG: ${{ github.event.ref }}