ppp github action ci #18
Workflow file for this run
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: ppp github action ci | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: "0 8 1 * *" | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
- name: update data | |
run : make data | |
- name: Commit and Push updated data in this repo | |
uses: mikeal/publish-to-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |