Skip to content

Merge pull request #25 from jokester/fix-fallback-locale #34

Merge pull request #25 from jokester/fix-fallback-locale

Merge pull request #25 from jokester/fix-fallback-locale #34

Workflow file for this run

name: Docker Image CI
on:
workflow_dispatch:
push:
tags:
- "v**"
branches:
- main
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup node and deps
uses: actions/setup-node@v3
with:
node-version: "20"
cache: npm
cache-dependency-path: package-lock.json
- run: npm i
- name: Build app
run: npm run build
- name: Log in to the Container registry
uses: docker/[email protected]
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/[email protected]
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: | # almost same as action default
type=ref,event=branch
type=ref,event=tag,pattern={{raw}}
type=ref,event=pr
- name: Setup docker buildx
uses: docker/setup-buildx-action@v2
- name: Build and push Docker image
uses: docker/[email protected]
with:
context: .
push: true
platforms: linux/arm64,linux/amd64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}