Skip to content

feat(kitty): bind kitty_mod+w to close_window_with_confirmation #189

feat(kitty): bind kitty_mod+w to close_window_with_confirmation

feat(kitty): bind kitty_mod+w to close_window_with_confirmation #189

Workflow file for this run

name: Publish PDF to site
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v23
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
nix_path: nixpkgs=https://github.com/NixOS/nixpkgs/tarball/master
- uses: cachix/cachix-action@v12
with:
name: yurrriq
skipPush: true
- name: Build PDF
run: |
nix build
mkdir site
cp -rv result/* site/
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v4
with:
target_branch: gh-pages
build_dir: site
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}