CI #35556
This file contains 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: CI | |
on: | |
push: | |
schedule: | |
- cron: '0 * * * *' | |
jobs: | |
maybe_update_meetup: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: regenerate _data/meetings.json | |
run: python3.8 -m pip install meetupscraper && TZ=Europe/Warsaw python3.8 ./scripts/meetings.py && cp _data/live_meetings.json api_live_meetings.json | |
- uses: stefanzweifel/[email protected] | |
with: | |
commit_message: Autoupdate _data/meetings.json |