diff options
author | Franck Cuny <franck@fcuny.net> | 2024-09-21 11:55:39 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-09-21 11:55:39 -0700 |
commit | 92e7621df1aa6e72d9f1a5b48dc216831f65c495 (patch) | |
tree | 796be75c958f1aba2f62ddb999fdb76d62be8211 | |
parent | fix configuration to generate the feed (diff) | |
download | fcuny.net-92e7621df1aa6e72d9f1a5b48dc216831f65c495.tar.gz |
publish with just
-rw-r--r-- | justfile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/justfile b/justfile index 5e383e8..dfb2e74 100644 --- a/justfile +++ b/justfile @@ -1,14 +1,17 @@ run: - zola serve + zola serve build: - zola build + zola build fmt: - treefmt + treefmt check-links: build - lychee ./docs/**/*.html + lychee ./docs/**/*.html update-deps: - nix flake update --commit-lock-file + nix flake update --commit-lock-file + +publish: build + rsync -a docs/ fcuny@fcuny.net:/srv/www/fcuny.net |