Skip to content

Commit

Permalink
build: build and push to dockerhub
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Aug 19, 2022
1 parent 706b538 commit 6f750d7
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,17 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag seunglab/igneous && docker push seunglab/igneous
name: "Checkout Code"

- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: "Build and Push"
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: seunglab/igneous

0 comments on commit 6f750d7

Please sign in to comment.