Skip to content

Merge pull request #25 from gazok/hw1186-patch-1 #2

Merge pull request #25 from gazok/hw1186-patch-1

Merge pull request #25 from gazok/hw1186-patch-1 #2

Workflow file for this run

name: Docker Build and Push
on:
push:
branches:
- master
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v2
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: yourusername/yourrepo:latest