A lexicon-driven AppView for ATProto. happyview.dev
backfill firehose jetstream atproto appview oauth lexicon
8
fork

Configure Feed

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

ci: replace svu with semantic-release

Trezy 8fc11d30 46782a93

+16 -12
+7 -10
.github/workflows/release.yml
··· 91 91 with: 92 92 fetch-depth: 0 93 93 94 - - name: Install svu 95 - run: | 96 - curl -kL https://github.com/caarlos0/svu/releases/download/v3.2.2/svu_3.2.2_linux_amd64.tar.gz | tar zx 97 - mv svu /usr/local/bin/svu 98 - chmod +x /usr/local/bin/svu 94 + - name: Setup Node.js 95 + uses: actions/setup-node@v4 96 + with: 97 + node-version: 22 99 98 100 - - name: Create release 99 + - name: Release 101 100 env: 102 - GH_TOKEN: ${{ secrets.DISPATCH_GH_TOKEN }} 103 - run: | 104 - VERSION_TAG=$(svu next) 105 - gh release create "$VERSION_TAG" -t "$VERSION_TAG" --generate-notes 101 + GITHUB_TOKEN: ${{ secrets.DISPATCH_GH_TOKEN }} 102 + run: npx semantic-release
+9
.releaserc.json
··· 1 + { 2 + "branches": ["main"], 3 + "tagFormat": "v${version}", 4 + "plugins": [ 5 + "@semantic-release/commit-analyzer", 6 + "@semantic-release/release-notes-generator", 7 + "@semantic-release/github" 8 + ] 9 + }
-2
.svu.yaml
··· 1 - always: true 2 - v0: false