deviras/.github/workflows/showcase-sunday.yml

36 lines
889 B
YAML
Raw Normal View History

2024-01-01 20:16:53 +05:30
name: Showcase Sunday Thread
2022-08-19 23:04:21 +05:30
on:
2023-09-17 19:10:41 +05:30
schedule:
# Run at 3:25 AM UTC (8:55 AM IST) every day
- cron: '25 3 * * *'
2022-08-19 23:04:21 +05:30
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Create Showcase Sunday Thread
2023-02-09 17:11:05 +05:30
env:
REDDIT_CLIENT_ID: ${{ secrets.REDDIT_CLIENT_ID }}
REDDIT_CLIENT_SECRET: ${{ secrets.REDDIT_CLIENT_SECRET }}
REDDIT_PASSWORD: ${{ secrets.REDDIT_PASSWORD }}
REDDIT_USERNAME: ${{ secrets.REDDIT_USERNAME }}
2023-02-09 17:09:22 +05:30
run: |
cd showcase-sunday
2023-02-09 17:18:19 +05:30
python main.py