Update README.md #13
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: CI/CD with Docker and GitHub Actions | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: docker build -t migprogrammer/neighborfood-img:latest . | |
- name: Log into Docker Hub | |
run: docker login -u migprogrammer -p ${secrets.DOCKERHUB_TOKEN} | |
- name: Push image to Docker Hub | |
run: docker push migprogrammer/neighborfood-img:latest | |