Skip to content

Veri Cekme Guncelleme #384

Veri Cekme Guncelleme

Veri Cekme Guncelleme #384

Workflow file for this run

name: Veri Cekme Guncelleme
on:
schedule:
- cron: "00 00 * * *" # Hergün saat 00:00 da
workflow_dispatch:
jobs:
DataControlAndDawnload:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v3 # checkout the repository content
- name: setup python
uses: actions/setup-python@v4
with:
python-version: "3.9" # install the python version needed
- name: install python packages
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: execute py script # run main.py
run: python Scripts/main.py
- name: commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add -A
git diff-index --quiet HEAD || (git commit -a -m "🤖 - Update Data" --allow-empty)
- name: push changes
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main
KaagleUpload:
needs: DataControlAndDawnload
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v3 # checkout the repository content
- name: setup python
uses: actions/setup-python@v4
with:
python-version: "3.10" # install the python version needed
- name: install python packages
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Kaggle Sync
env:
# Kaggle API auth
KAGGLE_USERNAME: ${{ secrets.KAGGLE_USERNAME }}
KAGGLE_KEY: ${{ secrets.KAGGLE_KEY }}
run: |
cd Data
kaggle datasets metadata ${{ vars.KAGGLE_DATASET_PATH}}
python ../Scripts/kaggleUpload.py