Skip to content

Commit

Permalink
Create docker-buil-push-dev.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
saggu authored Mar 16, 2022
1 parent 42c8055 commit c3e1eb2
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/docker-buil-push-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Docker Image CI

on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: uscisii2admin
password: ${{ secrets.USCISIDOCKERHUB }}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Build and push
uses: docker/build-push-action@v2
with:
context: .
file: ./docker/dev/Dockerfile
push: true
tags: uscisii2/kgtk:latest-dev

0 comments on commit c3e1eb2

Please sign in to comment.