Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
chore: disable scraper
Browse files Browse the repository at this point in the history
  • Loading branch information
tjk911 committed Jun 25, 2024
1 parent a7a0a03 commit 61ec227
Showing 1 changed file with 42 additions and 42 deletions.
84 changes: 42 additions & 42 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
name: Scrape
# name: Scrape

on:
push:
schedule:
- cron: "*/7 * * * *"
workflow_dispatch:
# on:
# push:
# schedule:
# - cron: "*/7 * * * *"
# workflow_dispatch:

env:
ftppw: ${{ secrets.ftppw }}
ftpuname: ${{ secrets.ftpuname }}

jobs:
scrape:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

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

- name: Create virtual environment
run: python -m venv venv

- name: Activate virtual environment
run: source venv/bin/activate

- name: Install requirements
run: pip install -r requirements.txt

- name: Run scraper
run: python3 scrape_collin.py

- name: Add and commit
run: |-
git add .
git config user.name "Automated"
git config user.email "[email protected]"
git commit -m "Latest data"
- name: Push
run: git push
# env:
# ftppw: ${{ secrets.ftppw }}
# ftpuname: ${{ secrets.ftpuname }}

# jobs:
# scrape:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v3

# - name: Set up Python
# uses: actions/setup-python@v4
# with:
# python-version: 3.9

# - name: Create virtual environment
# run: python -m venv venv

# - name: Activate virtual environment
# run: source venv/bin/activate

# - name: Install requirements
# run: pip install -r requirements.txt

# - name: Run scraper
# run: python3 scrape_collin.py

# - name: Add and commit
# run: |-
# git add .
# git config user.name "Automated"
# git config user.email "[email protected]"
# git commit -m "Latest data"
# - name: Push
# run: git push

0 comments on commit 61ec227

Please sign in to comment.