RSS Reader using AT Protocol rssbase.io
feed atom rss reader atproto social
2

Configure Feed

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

improve Tangled build workflow

+21 -17
+19
.tangled/workflows/base.yml
··· 1 + when: 2 + - event: ["push", "manual"] 3 + branch: ["main"] 4 + - event: ["pull_request"] 5 + branch: ["main"] 6 + 7 + engine: microvm 8 + image: nixos 9 + 10 + clone: 11 + skip: false 12 + depth: 1 13 + 14 + dependencies: 15 + - devenv 16 + 17 + steps: 18 + - name: "Smoke test devenv" 19 + command: devenv shell echo 'hello'
+2 -17
.tangled/workflows/build.yml
··· 12 12 13 13 dependencies: 14 14 nixpkgs: 15 - - cachix 16 15 - devenv 17 16 18 17 steps: 19 - - name: Debug 20 - command: | 21 - set -eux 22 - pwd 23 - id 24 - ls -la 25 - find . -maxdepth 2 -type f | sort 26 - git status || true 27 - which devenv || true 28 - devenv version || true 29 - nix --version || true 30 - devenv info || true 31 - devenv shell -- echo ok 32 - 33 - - name: "Test" 34 - command: devenv shell -- echo "Build cached" 18 + - name: "Smoke test devenv" 19 + command: devenv shell echo 'hello'