Skip to content

chore: push tags other than dev to Docker Hub #31

chore: push tags other than dev to Docker Hub

chore: push tags other than dev to Docker Hub #31

Workflow file for this run

name: build
on:
push:
branches: [ master ]
tags:
- '*'
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: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ozangulle/plauna
tags: |
# set dev tag for master branch
type=raw,value=dev,enable=${{ github.ref == format('refs/heads/{0}', 'master') }}
type=ref,event=branch
-
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:
push: true
platforms: linux/amd64,linux/arm64
file: Dockerfile
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}