Skip to content

My Mastodon Digest #1233

My Mastodon Digest

My Mastodon Digest #1233

Workflow file for this run

name: My Mastodon Digest
on:
schedule:
- cron: '0 10,22 * * *'
workflow_dispatch:
jobs:
update:
name: digest
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master
with:
ref: main
- name: python setup
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: python things
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: run digest
env:
MASTODON_TOKEN: ${{ secrets.MASTODON_TOKEN }}
MASTODON_BASE_URL: ${{ secrets.MASTODON_BASE_URL }}
MASTODON_USERNAME: ${{ secrets.MASTODON_USERNAME }}
run: |
python run.py -n 12 -s SimpleWeighted -t lax
- name: publish
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: render
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}