Skip to content

weread2discord

weread2discord #454

name: weread2discord
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
jobs:
sync:
name: Sync
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: weread2discord
run: |
python weread2discord.py "${{secrets.WEREAD_COOKIE}}" "${{secrets.DISCORD_WEBHOOK_URL}}"