Skip to content

Added mail on transfer #144

Added mail on transfer

Added mail on transfer #144

Workflow file for this run

name: Build Backend
# Controls when the workflow will run
on:
pull_request:
types: [opened, synchronize, reopened]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Checkout
uses: actions/checkout@v2
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Build and push backend
id: docker_build_backend
uses: docker/build-push-action@v2
with:
push: false
tags: fius/drinklistv4-backend:dev
file: backend/Dockerfile
context: ./backend
platforms: linux/amd64,linux/arm/v7