Skip to content

Added deploy step

Added deploy step #1

Workflow file for this run

name: Build and Deploy to Docker Hub
on:
push:
branches:
- master # Adjusted to trigger on pushes to master
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v2
- name: Prepare Dockerfile
run: cp ./docker/Dockerfile.user ./Dockerfile
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and Push Docker image
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: 100xdevs/web-app:latest
- name: Verify Pushed Image
run: docker pull 100xdevs/web-app:latest