Daily Instagram Automation #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Daily Instagram Automation | |
| on: | |
| schedule: | |
| # Run at 7 AM UTC (9 AM Bucharest time) | |
| - cron: "0 7 * * *" | |
| workflow_dispatch: # Allow manual triggering | |
| jobs: | |
| run-script: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run script | |
| run: | | |
| sudo chmod +x ./run_main.sh | |
| ./run_main.sh |