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

+4 -4
+4 -4
.github/workflows/versioned-docs.yml
··· 2 2 on: 3 3 workflow_dispatch: 4 4 push: 5 - tags: 5 + tags: ["*"] 6 6 concurrency: 7 7 group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.number }} 8 8 cancel-in-progress: true ··· 19 19 pushd docs 20 20 pnpm install 21 21 pnpm run build 22 - rg '(src|href)="/' dist -l -0 | xargs -0 -n 1 sed -i 's#\(src\|href\)="/#\1="/${{github.ref}}/#g' 22 + grep '\(src\|href\)="/' dist -l | xargs -n 1 sed -i 's#\(src\|href\)="/#\1="/${{github.ref_name}}/#g' 23 23 mkdir -p versioned 24 - mv dist versioned/${{github.ref}} 24 + mv dist versioned/${{github.ref_name}} 25 25 popd 26 26 - uses: actions/upload-artifact@v4 27 27 with: 28 - name: docs-${{github.ref}} 28 + name: docs-${{github.ref_name}} 29 29 path: ./docs/versioned 30 30 overwrite: true 31 31