Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

docs(logo): fix homelab logo location #27

docs(logo): fix homelab logo location

docs(logo): fix homelab logo location #27

Workflow file for this run

---
name: site
on:
push:
branches: [main]
paths: ["docs/**", "mkdocs.yml", "flake.*"]
pull_request:
branches: [main]
paths: ["docs/**", "mkdocs.yml", "flake.*"]
jobs:
site:
name: Build Site
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- name: "Install Nix ❄️"
uses: cachix/install-nix-action@7ac1ec25491415c381d9b62f0657c7a028df52a7 # v24
- name: "Build 🛠️"
run: "nix build .#site"
- name: "Deploy 🚀"
if: ${{ github.ref == 'refs/heads/main' }}
uses: crazy-max/ghaction-github-pages@v4.0.0
with:
target_branch: gh-pages
build_dir: result
follow_symlinks: true
keep_history: false
fqdn: jesusmtnez.es
jekyll: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}