Skip to content

Building Frontend Image #1

Building Frontend Image

Building Frontend Image #1

name: build-frontend
run-name: Building Frontend Image
on:
push:
branches:
- main
paths:
- 'frontend/**'
env:
IMAGE_NAME: world-arcade-front
jobs:
build-frontend:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Build image
run: docker build frontend/ --file frontend/Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"
- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- name: Push image
run: |
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
VERSION=$(date -u +%Y%m%d.%H%M).$(echo $GITHUB_SHA | head -c 7)
echo Will push $IMAGE_ID:$VERSION
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION