Skip to content

Publish frontend image to GHCR #7

Publish frontend image to GHCR

Publish frontend image to GHCR #7

name: Publish frontend image to GHCR
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
inputs:
tag:
description: 'Tag to publish'
required: true
default: 'latest'
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
name: Checkout
- uses: ./.github/actions/build-image
with:
tag: ${{ github.event.inputs.tag }}
target: frontend
token: ${{ secrets.GITHUB_TOKEN }}