Skip to content

Update docker-image.yml ( final fix, hopefully ) #7

Update docker-image.yml ( final fix, hopefully )

Update docker-image.yml ( final fix, hopefully ) #7

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@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker images
uses: docker/[email protected]
with:
context: .
file: ./container/Dockerfile
push: true
tags: unlux/transcoding:latest
- name: Verify Pushed Image
run: docker pull unlux/transcoding:latest