Skip to content

Commit

Permalink
Create BinderHub.yml
Browse files Browse the repository at this point in the history
Create a BinderHub action workflow that creates a docker container for Binder operation
  • Loading branch information
Mauricio Salazar committed Apr 19, 2024
1 parent 850667f commit 867ab5f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/BinderHub.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: BinderHub docker repo
on: workflow_dispatch

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.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_API_TOKEN }}
BINDER_CACHE: true
PUBLIC_REGISTRY_CHECK: true

0 comments on commit 867ab5f

Please sign in to comment.