Generate RSS feed using stateful DB #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate RSS feeds for all tracked API sources | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
code-quality: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install rye | |
uses: eifinger/setup-rye@v2 | |
with: | |
enable-cache: true | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
version: '0.33.0' | |
- name: Install dependencies | |
run: rye sync --no-lock | |
- uses: jorgebg/[email protected] | |
- name: Generate RSS feed based on DB | |
run: rye run generate-rss formula .state/feed.db .state/formula.rss 20240501 |