Skip to content

Create config.yml

Create config.yml #5

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Build the Docker image
- name: Build the Docker image
run: docker build . --file Dockerfile --tag kenhendricks00/fixembed:latest
# Log in to Docker Hub using credentials stored in GitHub Secrets
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
# Push the Docker image to Docker Hub
- name: Push the Docker image to Docker Hub
run: docker push kenhendricks00/fixembed:latest