🔧 version img #32
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 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
with: | |
version: v0.7.0 | |
- name: Build the Docker image | |
run: docker build -t migprogrammer/neighborfood-clean: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-clean:latest |