Skip to content

feat: add spanish language admin and server #2928

feat: add spanish language admin and server

feat: add spanish language admin and server #2928

Workflow file for this run

name: '[docker] CI for test'
on:
pull_request:
branches:
- main
jobs:
path-context:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Build alpine
uses: docker/build-push-action@v6
with:
file: ./packages/server/Dockerfile.alpine
platforms: linux/amd64,linux/arm64,linux/arm/v7
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache,mode=max
- name: Build debian
uses: docker/build-push-action@v6
with:
file: ./packages/server/Dockerfile
platforms: linux/amd64,linux/arm64,linux/arm/v7
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache,mode=max