Spaces:
Sleeping
Sleeping
:whale:
Browse files
.github/workflows/docker-image.yml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Binder Image
|
2 |
+
on:
|
3 |
+
workflow_dispatch: null
|
4 |
+
push: null
|
5 |
+
jobs:
|
6 |
+
build:
|
7 |
+
runs-on: ubuntu-latest
|
8 |
+
permissions: write-all
|
9 |
+
steps:
|
10 |
+
- uses: actions/checkout@v3
|
11 |
+
- name: Publish to GitHub Container Registry
|
12 |
+
uses: elgohr/Publish-Docker-Github-Action@v5
|
13 |
+
with:
|
14 |
+
name: boettiger-lab/inat-ranges
|
15 |
+
username: ${{ github.actor }}
|
16 |
+
password: ${{ secrets.GITHUB_TOKEN }}
|
17 |
+
registry: ghcr.io
|
18 |
+
|