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: add dev branch prerelease to semantic release

Trezy afaf583b 7407092e

+7 -4
+3 -3
.github/workflows/release.yml
··· 2 2 3 3 on: 4 4 push: 5 - branches: [main] 5 + branches: [main, dev] 6 6 pull_request: 7 - branches: [main] 7 + branches: [main, dev] 8 8 9 9 env: 10 10 SQLX_OFFLINE: true ··· 88 88 run: cargo clippy --all-targets -- -D warnings 89 89 90 90 release: 91 - if: github.event_name == 'push' && github.ref == 'refs/heads/main' 91 + if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev') 92 92 needs: [test, lint] 93 93 runs-on: ubuntu-latest 94 94 permissions:
+4 -1
.releaserc.json
··· 1 1 { 2 - "branches": ["main"], 2 + "branches": [ 3 + "main", 4 + { "name": "dev", "prerelease": "dev" } 5 + ], 3 6 "tagFormat": "v${version}", 4 7 "plugins": [ 5 8 "@semantic-release/commit-analyzer",