Skip to content

rookie mistake in branch name #1

rookie mistake in branch name

rookie mistake in branch name #1

Workflow file for this run

name: Docker Image CI
on:
push:
branches:
- main
jobs:
build-and-push:
runs-on: ubuntu-latest
env:
AWS1: ${{ secrets.AWS1 }}
AWS2: ${{ secrets.AWS2 }}
steps:
- name: Check Out Repo
uses: actions/checkout@v4
- 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: ./container/Dockerfile
push: true
tags: unlux/transcoding:latest # Replace with your Docker Hub username and repository
- name: Verify Pushed Image
run: docker pull unlux/transcoding:latest # Replace with your Docker Hub username and repository