Modular, context-aware and aspect-oriented dendritic Nix configurations. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/ den.oeiuwq.com
configurations den dendritic nix aspect oriented
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

download versioned docs

+9 -1
+7
.github/workflows/gh-pages.yml
··· 28 28 pnpm install 29 29 pnpm run build 30 30 popd 31 + - run: | 32 + curl https://api.github.com/repos/vic/den/releases | jq 'map(.tag_name) + ["main","latest"]' | tee docs/dist/versions.json 33 + - uses: actions/download-artifact@v8 34 + with: 35 + pattern: "docs-*" 36 + path: "./docs/dist" 37 + merge-multiple: true 31 38 - name: Setup Pages 32 39 uses: actions/configure-pages@v5 33 40 - name: Upload artifact
+2 -1
.github/workflows/versioned-docs.yml
··· 19 19 pushd docs 20 20 pnpm install 21 21 pnpm run build 22 - grep '\(src\|href\)="/' dist -l | xargs -n 1 sed -i 's#\(src\|href\)="/#\1="/${{github.ref_name}}/#g' 22 + sudo apt-get install -y ripgrep 23 + rg '(src|href)="/' dist -l -0 | xargs -0 -n 1 sed -i 's#\(src\|href\)="/#\1="/${{github.ref_name}}/#g' 23 24 mkdir -p versioned 24 25 mv dist versioned/${{github.ref_name}} 25 26 popd