Skip to content

Merge Release

Merge Release #111

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Test building frontend image
on:
pull_request:
types: [opened, reopened, synchronize]
branches:
- develop
- master
paths:
- "frontend/*"
- "scripts/*"
- ".github/workflows/test_build_frontend_image.yml"
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}-frontend
jobs:
test-build-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
# Fetch all tags
fetch-depth: 0
- name: Build docker image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: .
file: frontend.Dockerfile
push: false