Skip to content

Commit

Permalink
Update schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
Lovi-0 committed Jan 2, 2025
1 parent c0c8d4e commit da1e183
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/python-script.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Run Python Script

on:
schedule:
- cron: '0 0 * * *' # Esegui ogni giorno a mezzanotte
workflow_dispatch:

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

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

- name: Setup 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: Run script
run: |
python Test/call_updateDomain.py
- name: Configure Git
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Commit changes
run: |
git add .
git commit -m "Update output" || echo "No changes"
- name: Push changes
uses: ad-m/github-push-action@v0.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main

0 comments on commit da1e183

Please sign in to comment.