try adding docker image action #1
This file contains 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: binder | |
on: [push] # You may want to trigger this Action on other things than a push. | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout files in repo | |
uses: actions/checkout@master | |
- name: update jupyter dependencies with repo2docker | |
uses: machine-learning-apps/repo2docker-action@master | |
with: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
MYBINDERORG_CACHE: true |