Create config.yml #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |