Skip to content

Added a translation of the website into Russian #57

Added a translation of the website into Russian

Added a translation of the website into Russian #57

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: cachix/cachix-action@v15
with:
name: fcitx5-android
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- name: Build site
run: nix develop --command mkdocs build --site-dir public
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
name: github-pages
path: public
retention-days: 90
deploy:
if: github.ref_name == 'master'
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4