Skip to content

Commit 037fd83

Browse files
committed
Add gh workflow for pushing to dockerhub
1 parent 9cd56ae commit 037fd83

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name:
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
docker:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Login to Docker Hub
11+
uses: docker/login-action@v3
12+
with:
13+
username: ${{ secrets.DOCKERHUB_USERNAME }}
14+
password: ${{ secrets.DOCKERHUB_TOKEN }}
15+
16+
- name: Set up QEMU
17+
uses: docker/setup-qemu-action@v2
18+
19+
- name: Build and push Docker image
20+
run: make docker-nmdc
21+

0 commit comments

Comments
 (0)