Skip to content

style login and add simple route guard #7

style login and add simple route guard

style login and add simple route guard #7

name: Build production frontend image
on:
push:
branches:
- main
jobs:
build:
permissions:
contents: read
packages: write
runs-on: ubuntu-latest
environment: production
concurrency: production-frontend
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/openmomentso/frontend
flavor: latest=true
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
- name: Login to image repository
#if: github.ref_type == 'tag'
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64
context: "{{defaultContext}}:frontend"
file: Dockerfile
build-args: |
VITE_API_URL=https://api.momentso.com/graphql
push: true # ${{ github.ref_type == 'tag' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}