Skip to content

collect-posts

collect-posts #177

Workflow file for this run

name: collect-posts
on:
push:
branches:
- main
schedule:
- cron: "1 00 * * *"
jobs:
download-posts:
name: "Check for new posts, download them and re-publish"
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: 'run'
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: pip
- run: pip install -r requirements.txt
- name: grab posts
run: python grab.py
- name: Build and Deploy Nikola
uses: getnikola/nikola-action@v8
with:
dry_run: false
- name: check branch
run: |
sudo chmod -R ugo+rwX .
git config --global user.name 'GHABot'
git config --global user.email 'GHABot@nomail'
git add gsoc* output/* posts/*
git commit -m "update from $(date)"
git push origin run:run