Skip to content

feat: update localized translations for 'consolation' #11

feat: update localized translations for 'consolation'

feat: update localized translations for 'consolation' #11

Workflow file for this run

name: Build and Push Image (Preview)
on:
push:
branches:
- preview
workflow_dispatch:
env:
DOCKER_TAG: ghcr.io/carrotnibbles/llr-preview:latest
jobs:
push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ github.token }}
- uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ env.DOCKER_TAG }}
cache-from: type=gha
cache-to: type=gha,mode=max