Skip to content

doc update

doc update #18

Workflow file for this run

name: Build and publish
on:
push:
branches: [ "main" ]
workflow_dispatch:
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build Docker image
run: docker build -t marco1205/bazzar-backend .
- name: Push Docker image
run: docker push marco1205/bazzar-backend