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.

create release tag

+20
+20
.github/workflows/release-tag.yml
··· 1 + name: Release tagged 2 + on: 3 + workflow_dispatch: 4 + push: 5 + tags: ["v*"] 6 + concurrency: 7 + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.number }} 8 + cancel-in-progress: true 9 + jobs: 10 + main: 11 + runs-on: ubuntu-slim 12 + env: 13 + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 14 + permissions: 15 + contents: write 16 + steps: 17 + run: | 18 + TAG="$(git describe --tags --abbrev=0)" 19 + git tag -f release "$TAG" -m "https://github.com/vic/den/releases/tag/$TAG" 20 + git push origin tag "$TAG" -f