Add many new modules #65
This file contains 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: "pages" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
actions: read | |
contents: read | |
pages: write | |
id-token: write | |
deployments: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
build: | |
name: Build search | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v30 | |
- uses: DeterminateSystems/magic-nix-cache-action@v8 | |
with: | |
diagnostic-endpoint: false | |
use-flakehub: false | |
- name: Build search | |
run: nix build -L | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: result | |
- name: Publish to Cloudflare Pages | |
if: "github.repository_owner == 'NuschtOS'" | |
uses: cloudflare/pages-action@v1 | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
accountId: 2a09613716e511a8fe8ca74abc084762 | |
projectName: search-nuschtos-de | |
directory: result | |
gitHubToken: ${{ github.token }} | |
deploy: | |
name: Deploy to GitHub Pages | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 | |
if: github.event_name == 'push' |