Skip to content

Commit

Permalink
Create main2.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
PhatDot1 committed Sep 12, 2024
1 parent bfdc432 commit ad7a49d
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/main2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Run DoveScraper2

on:
schedule:
- cron: '0 0 */1 * *'
workflow_dispatch:

jobs:
run-scraper:
runs-on: ubuntu-latest

env:
AIRTABLE_API_KEY: ${{ secrets.AIRTABLE_API_KEY }}

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install requests # Add any other dependencies your script requires
- name: Run DoveScraper2.py
run: python DoveScraper2.py

0 comments on commit ad7a49d

Please sign in to comment.