Skip to content

Another try

Another try #8

name: Update snapshots
on:
push:
schedule:
- cron: '0 1 * * *'
workflow_dispatch:
env:
FORCE_COLOR: 1
LANG: en_US.UTF-8
jobs:
update-snapshots:
name: Update snapshots
# if: github.repository == 'vacanza/python-holidays'
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
cache: pip
cache-dependency-path: |
requirements/build.txt
requirements/dev.txt
check-latest: true
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements/build.txt
python -m pip install -r requirements/dev.txt
python -m pip install .
make package
python -m pip install dist/*.tar.gz
- name: Generate snapshots
run: |
make snapshot
- uses: peter-evans/[email protected]
with:
base: dev
body: Automatically generated snapshots update.
branch: update-snapshots
commit-message: 'chore: Update snapshots'
committer: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
delete-branch: true
title: Update snapshots
token: ${{ github.token }}