india-isin-data/.github/workflows/update.yml

33 lines
957 B
YAML
Raw Normal View History

2022-04-24 08:34:50 +00:00
name: Update Data
on:
2022-05-16 10:57:17 +00:00
push:
2022-04-24 08:34:50 +00:00
schedule:
2022-04-28 05:53:33 +00:00
# 18:07 UTC every day
# 23:37 IST every day
2022-05-02 06:17:15 +00:00
- cron: '7 18 * * *'
2022-04-24 08:34:50 +00:00
jobs:
update:
name: Update data
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Update data
2022-05-19 06:16:10 +00:00
run: make update
2022-05-02 04:21:41 +00:00
id: update_data
# Only tag if we're running on the scheduled job
2022-04-24 08:34:50 +00:00
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Update ISIN Data
commit_author: 'github-actions[bot] <github-actions[bot]@users.noreply.github.com>'
2022-05-19 06:16:10 +00:00
file_pattern: "ISIN.csv"
status_options: '--untracked-files=no'
2022-05-02 04:21:41 +00:00
tagging_message: "v${{ steps.update_data.outputs.version }}"
- name: Create Release
run: |
pip install -r requirements.txt
make release "version=v${{ steps.update_data.outputs.version }}"
2022-05-04 19:38:01 +00:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}