Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/install-nix/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ inputs:
runs:
using: composite
steps:
- uses: DeterminateSystems/nix-installer-action@v4
- uses: DeterminateSystems/nix-installer-action@v7
with:
extra-conf: |
accept-flake-config = true
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/wit-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,13 @@ jobs:
with:
cachixAuthToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix build -L .#checks.x86_64-linux.doc
- run: tar xf ./result/target.tar.zst
- run: rm -f target/doc/.lock
- run: cp --no-preserve=mode -R ./result/share/doc ./doc
- run: rm -f doc/.lock
- name: Create `.nojekyll`
run: touch target/doc/.nojekyll
run: touch doc/.nojekyll
- name: Write `index.html`
run: |
cat <<EOF > target/doc/index.html
cat <<EOF > doc/index.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>Redirecting to wit_deps/index.html</title>
Expand All @@ -128,7 +128,7 @@ jobs:
EOF
- uses: actions/upload-pages-artifact@v2.0.0
with:
path: target/doc
path: doc

deploy-doc:
runs-on: ubuntu-22.04
Expand Down
Loading