Skip to content

Remove wikipedia and description from translations #33

Remove wikipedia and description from translations

Remove wikipedia and description from translations #33

Workflow file for this run

name: Build and Deploy via Nix
on:
push:
branches: [main]
permissions:
contents: read
pages: write
id-token: write # Required for GitHub Pages deployment
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v25
- name: Build Nix derivation
run: |
nix build .#default
echo "site output is in result/"
- name: Upload pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./result
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4