Skip to content

RSS Feeds

RSS Feeds #786

Workflow file for this run

name: RSS Feeds
# Runs on pushes targeting the default branch
on:
push:
branches: [main]
paths-ignore:
- 'README.md'
- '.gitignore'
schedule:
- cron: "0 4 * * *"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install Dependencies
run: |
python -V
pip install -r requirements.txt
- name: Setup Pages
id: pages
uses: actions/configure-pages@v2
- name: Generate Feeds
run: |
python main.py
mkdir public && mv index.html *.xml ./public
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./public
- name: Dummy commit
uses: gautamkrishnar/keepalive-workflow@v1
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1