Skip to content

RSS

RSS #36

Workflow file for this run

name: RSS
#on: [ push, pull_request ]
on: [ pull_request, workflow_dispatch ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
- name: Install Pandoc
run:
sudo apt-get install -y pandoc
- name: Build RSS
run: |
git pull --rebase
cd docs/
./rss.sh
- name: Commit Updated
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Build feed.xml