Skip to content

add version

add version #26

Workflow file for this run

on:
push:
branches:
- 'main'
- 'develop'
- 'danniel/backendRefactor'
tags:
- 'v*'
name: Build Docker image
jobs:
build-backend-amd64:
name: backend/amd64
uses: ./.github/workflows/build-template.yml
with:
images: ghcr.io/code4romania/seismic-risc-backend
context: ./
dockerfile: ./docker/dockerfiles/Dockerfile.backend
platform: linux/amd64
registry: ghcr.io
secrets:
username: ${{ github.actor }}
token: ${{ secrets.GITHUB_TOKEN }}
build-frontend-amd64:
name: frontend/amd64
uses: ./.github/workflows/build-template.yml
with:
images: ghcr.io/code4romania/seismic-risc-frontend
context: ./client
dockerfile: ./docker/dockerfiles/Dockerfile.frontend
platform: linux/amd64
registry: ghcr.io
secrets:
username: ${{ github.actor }}
token: ${{ secrets.GITHUB_TOKEN }}