Update PWA name #106
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: Fetch Bac PDFs | |
| # on: | |
| # schedule: | |
| # # Runs at 15:05 Europe/Bucharest (12:05 UTC), on Weekdays only for March, May, June, August. | |
| # - cron: '5 12 * 3,5,6,7,8,11 1-5' | |
| # workflow_dispatch: {} | |
| # jobs: | |
| # fetch-and-upload: | |
| # runs-on: ubuntu-latest | |
| # permissions: | |
| # contents: write | |
| # steps: | |
| # - name: Checkout repository | |
| # uses: actions/checkout@v4 | |
| # with: | |
| # sparse-checkout: web-scraper | |
| # - name: Set up Python | |
| # uses: actions/setup-python@v4 | |
| # with: | |
| # python-version: '3.12' | |
| # - name: Install dependencies | |
| # run: pip install requests | |
| # - name: Run Fetch Script | |
| # env: | |
| # PUBLIC_WORKER_URL: ${{ variables.PUBLIC_WORKER_URL }} | |
| # UPLOAD_PASSWORD: ${{ secrets.UPLOAD_PASSWORD }} | |
| # run: python web-scraper/main.py | |
| # - name: Commit seen_urls changes | |
| # uses: stefanzweifel/git-auto-commit-action@v5 | |
| # with: | |
| # commit_message: "🤖 Auto-fetch: Update seen_urls" | |
| # file_pattern: 'web-scraper/seen_urls.txt' | |
| # skip_dirty_check: false | |
| # create_branch: false |