Skip to content

pipeline test run fixes #26

pipeline test run fixes

pipeline test run fixes #26

Workflow file for this run

name: Build and Push Docker Image
on:
push:
branches:
- main
- 'feature/*'
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: sumanreddy568/automation-framework:latest
file: ./Dockerfile
- name: Logout from Docker Hub
run: docker logout