Skip to content

fix(styling):text

fix(styling):text #29

Workflow file for this run

name: Build Docker Image
on:
push:
branches:
- main # Adjust this to the branch you want to monitor
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and Push Docker Image
run: |
docker build -t faithyeenx5/fridgedaddy-juicedup:${{ github.sha }} .
docker push faithyeenx5/fridgedaddy-juicedup:${{ github.sha }}