Skip to content

Update rss.yml

Update rss.yml #4

Workflow file for this run

on:
push:
workflow_dispatch:
jobs:
update-readme-with-blog:
name: Crawl rss and generate static page
runs-on: windows-2019
steps:
- uses: actions/checkout@main
with:
repository: oSoWoSo//github-action-rss-crawler
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
#- run: dotnet build DemoApp\DemoApp.sln
- run: dotnet run --project RssCrawler\RssCrawler.csproj
- run: git config --local user.email "[email protected]"
- run: git config --local user.name "zenobit"
- run: git add .
- run: git commit -m "Add changes"
- run: git push