feat(i18n): add Russian locale #17
Workflow file for this run
This file contains hidden or 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: Docker PR Build | |
| on: | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Build (${{ matrix.image.short }}/${{ matrix.platform.arch }}) | |
| runs-on: ${{ matrix.platform.runner }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| image: | |
| - dockerfile: Dockerfile | |
| short: windshift | |
| - dockerfile: deploy/coding-agent/Dockerfile | |
| short: ws-carrier | |
| - dockerfile: deploy/windshift-runner/Dockerfile | |
| short: windshift-runner | |
| platform: | |
| - os: linux/amd64 | |
| runner: ubuntu-latest | |
| arch: amd64 | |
| - os: linux/arm64 | |
| runner: ubuntu-24.04-arm | |
| arch: arm64 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0 | |
| - name: Compute build metadata | |
| id: build_meta | |
| shell: bash | |
| run: | | |
| echo "version=dev" >> "$GITHUB_OUTPUT" | |
| echo "commit=${GITHUB_SHA::7}" >> "$GITHUB_OUTPUT" | |
| echo "date=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> "$GITHUB_OUTPUT" | |
| - name: Build image | |
| uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2 | |
| with: | |
| context: . | |
| file: ${{ matrix.image.dockerfile }} | |
| platforms: ${{ matrix.platform.os }} | |
| cache-from: type=gha,scope=${{ matrix.image.short }}-${{ matrix.platform.arch }} | |
| cache-to: type=gha,mode=max,scope=${{ matrix.image.short }}-${{ matrix.platform.arch }} | |
| build-args: | | |
| VERSION=${{ steps.build_meta.outputs.version }} | |
| RELEASE_NAME= | |
| COMMIT=${{ steps.build_meta.outputs.commit }} | |
| BUILD_DATE=${{ steps.build_meta.outputs.date }} | |
| push: false |