Building Frontend Image #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-frontend | |
run-name: Building Frontend Image | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'frontend/**' | |
workflow_dispatch: | |
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}" --build-arg "NEXT_PUBLIC_CARTESI_NODE_URL=$NEXT_PUBLIC_CARTESI_NODE_URL" --build-arg "NEXT_PUBLIC_DAPP_ADDR=$NEXT_PUBLIC_DAPP_ADDR" | |
env: | |
NEXT_PUBLIC_DAPP_ADDR: ${{ vars.NEXT_PUBLIC_DAPP_ADDR }} | |
NEXT_PUBLIC_CARTESI_NODE_URL: ${{ vars.NEXT_PUBLIC_CARTESI_NODE_URL }} | |
- 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 |