125 years ago, schnitzler wrote #6
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
name: 125 years ago, schnitzler wrote | |
on: | |
schedule: | |
- cron: "40 9 * * *" | |
workflow_dispatch: | |
jobs: | |
post_on_bluesky: | |
runs-on: ubuntu-latest | |
name: Post something on Bluesky | |
env: | |
BS_HANDLE: ${{secrets.BS_HANDLE}} | |
BS_TOKEN: ${{secrets.BS_TOKEN}} | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v4 | |
- name: Set up Python environment | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: install packages | |
run: pip install -r requirments.txt | |
- name: post the post | |
run: python scripts/schnitzler-tagebuch.py |