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

36 lines
1.1 KiB
YAML
Raw Normal View History

2022-04-24 08:34:50 +00:00
name: Update Data
on:
2022-05-19 11:59:37 +00:00
workflow_dispatch:
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
2022-08-29 11:30:03 +00:00
id: auto-commit-action
2022-04-24 08:34:50 +00:00
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
2022-08-29 11:30:03 +00:00
if: steps.auto-commit-action.outputs.changes_detected == 'true'
run: |
2022-05-19 07:19:48 +00:00
pip install -r src/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 }}