Update rss.yml #4
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
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 |