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.

versioned docs

+31
+31
.github/workflows/versioned-docs.yml
··· 1 + name: Versioned docs 2 + on: 3 + workflow_dispatch: 4 + push: 5 + tags: 6 + concurrency: 7 + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.number }} 8 + cancel-in-progress: true 9 + jobs: 10 + build: 11 + runs-on: ubuntu-latest 12 + steps: 13 + - uses: actions/checkout@v6 14 + - uses: pnpm/action-setup@v4 15 + with: 16 + version: latest 17 + - name: Build 18 + run: | 19 + pushd docs 20 + pnpm install 21 + pnpm run build 22 + rg '(src|href)="/' dist -l -0 | xargs -0 -n 1 sed -i 's#\(src\|href\)="/#\1="/${{github.ref}}/#g' 23 + mkdir -p versioned 24 + mv dist versioned/${{github.ref}} 25 + popd 26 + - uses: actions/upload-artifact@v4 27 + with: 28 + name: docs-${{github.ref}} 29 + path: ./docs/versioned 30 + overwrite: true 31 +