Skip to content

remove await

remove await #8

Workflow file for this run

name: RSS Feed
on:
push:
branches: [ "main" ]
paths:
- 'rss/**'
- 'content/**'
- '.github/workflows/rss.yml'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install ./rss
- name: Generate RSS
run: node rss/generate-rss.js
- name: Commit and push
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add rss.xml
git commit -m "Generate RSS feed" -a || echo "No changes to commit"
git push