Skip to content

refactor alert and error handling #2

refactor alert and error handling

refactor alert and error handling #2

name: publish docker CD
env:
DOCKERREPO: seblum/octivbooker
TAG: v1.1.0
on:
push:
branches: master
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
with:
file: ./slotBooker/poetry.Dockerfile
push: true
tags: ${{ env.DOCKERREPO }}:${{ env.TAG }}
# context: .