From afb58992c9110b8ba864b610d2dafbe738801ff7 Mon Sep 17 00:00:00 2001 From: zyl Date: Tue, 12 Nov 2024 17:53:26 -0800 Subject: [PATCH] fix to use the new proper site argument --- .github/workflows/main.yml | 2 +- site/pages/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 39c39f9..c06dee1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -40,7 +40,7 @@ jobs: # Runs a single command using the runners shell - name: Build site run: | - cargo run --no-default-features --release -- build --site-path site + cargo run --no-default-features --release -- build --site site - name: Setup Pages uses: actions/configure-pages@v5 diff --git a/site/pages/index.md b/site/pages/index.md index 9e0b69a..e3724e8 100644 --- a/site/pages/index.md +++ b/site/pages/index.md @@ -19,7 +19,7 @@ cargo install webdog --git https://github.com/zyllian/webdog then you can make your first webdog site! ```sh -webdog create https://example.com "My First Site!" --site-path my-site +webdog create https://example.com "My First Site!" --site my-site cd my-site webdog serve # your site is now running at http://127.0.0.1:8080 🥳 ```