Skip to content

tomgauld

tomgauld #115

Workflow file for this run

name: tomgauld
on:
# push:
# branches:
# - master
schedule:
- cron: "35 6 * * 3"
workflow_dispatch:
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install required PowerShell modules
shell: pwsh
run: |
Set-PSRepository PSGallery -InstallationPolicy Trusted
Install-Module UncommonSense.Hap, UncommonSense.NewScientist, UncommonSense.Rss -Scope CurrentUser
- name: Update feed
shell: pwsh
run: |
Get-TomGauld
| Select-Object -First 10
| ForEach-Object {
New-RssFeedItem `
-ID $_.Url `
-Title $_.Title `
-Description "<img src='$($_.Body)'/>" `
-PubDate $_.Date }
| New-RssFeed `
-Title 'Tom Gauld' `
-Link 'https://www.newscientist.com/author/tom-gauld/' `
-Description 'Tom Gauld'
| Set-Content -Path ./data/tomgauld.xml
- name: Commit and push feed
shell: bash
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git pull
git add .
git commit -m "generated" || echo "No changes to commit"
git push