Skip to content

Small fixes

Small fixes #2

name: Branch build
on:
push:
branches:
- '*'
jobs:
prod_deploy:
runs-on: ubuntu-latest
steps:
- name: Print the branch name
run: echo ${{ github.ref }}
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/mixdrinks-web:${{ github.ref }}