Singapore Jobs — Daily 8AM SST #138
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: Singapore Jobs — Daily 8AM SST | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| run: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install dependencies | |
| run: pip install python-jobspy groq scikit-learn numpy python-dateutil pyyaml pytz beautifulsoup4 lxml requests | |
| - name: Run pipeline | |
| env: | |
| GROQ_API_KEY: ${{ secrets.GROQ_API_KEY }} | |
| EMAIL_ADDRESS: ${{ secrets.EMAIL_ADDRESS }} | |
| EMAIL_APP_PASSWORD: ${{ secrets.EMAIL_APP_PASSWORD }} | |
| EMAIL_TO: ${{ secrets.EMAIL_TO }} | |
| RAPIDAPI_KEY: ${{ secrets.RAPIDAPI_KEY }} | |
| run: python src/main.py --country Singapore |