Skip to content

v4 stage 1 update

v4 stage 1 update #2

Workflow file for this run

name: Push container image to github container registry
on:
push:
branches:
- main
jobs:
docker-publish:
runs-on: ubuntu-22.04
steps:
- name: docker-build-action
uses: serversideup/github-action-docker-build@v5
with:
tags: mimovel:latest,mimovel:v4.0.0-beta
context: '.'
dockerfile: './Dockerfile'
registry: 'ghcr.io'
registry-username: ${{ secrets.DOCKER_HUB_USERNAME }}
registry-token: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
platforms: "linux/amd64,linux/arm/v7,linux/arm64/v8"