Merge pull request #74 from thomaswmorris/patch-1 #95
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: Build and Publish Container Image | |
on: | |
push: | |
branches: | |
- main | |
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@a3332630b6467f02ffc1015f433ee7f8339614dc # master as of 2022-11-25 | |
with: | |
# Push built image to DockerHub for use by our JupyterHub deployments. | |
DOCKER_USERNAME: nsls2damaservice | |
DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} | |
IMAGE_NAME: "nsls2/scipy-binder" |