diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2025-08-17 18:10:33 +0300 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2025-08-17 18:10:41 +0300 |
| commit | 26a6e0cd985330c0515aea3ab1665f49e2e9ce93 (patch) | |
| tree | b140a5e329c6b0fa91b839b76dec633f0546131d | |
| parent | b12a56e4e6b8f18c9b69396f40f163311505a2ff (diff) | |
| download | niri-26a6e0cd985330c0515aea3ab1665f49e2e9ce93.tar.gz niri-26a6e0cd985330c0515aea3ab1665f49e2e9ce93.tar.bz2 niri-26a6e0cd985330c0515aea3ab1665f49e2e9ce93.zip | |
ci: Add some blank lines
| -rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c15e443..301d5c89 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -303,6 +303,7 @@ jobs: with: lfs: true show-progress: false + - uses: Andrew-Chen-Wang/github-wiki-action@b7e552d7cb0fa7f83e459012ffc6840fd87bcb83 with: path: docs/wiki/ @@ -319,22 +320,29 @@ jobs: with: lfs: true show-progress: false + - name: Install uv uses: astral-sh/setup-uv@v6 with: enable-cache: true + - name: Install the project run: uv sync --locked --all-extras --dev working-directory: docs/ + - name: Generate niri documentation run: uv run mkdocs build working-directory: docs/ + - uses: dtolnay/rust-toolchain@stable + - name: Generate rustdoc documentation run: cargo doc --no-deps -p niri-ipc + - run: mkdir -p publish/niri_ipc - run: cp -r ./target/doc/* ./publish/ - run: cp -r ./docs/site/* ./publish/ + - name: Deploy documentation if: github.ref == 'refs/heads/main' uses: peaceiris/actions-gh-pages@v4 |
