-
Notifications
You must be signed in to change notification settings - Fork 0
executable file
·58 lines (48 loc) · 1.66 KB
/
gen.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Build
permissions:
contents: write
on:
schedule:
- cron: 0 4 * * * # 4:00 UTC everyday
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v4
- name: setup Python with uv
id: setup-uv
uses: astral-sh/setup-uv@v5
with:
version: latest
python-version: ${{ matrix.python-version }}
enable-cache: true
prune-cache: false # do not remove pre-built wheels
ignore-nothing-to-cache: true
cache-dependency-glob: "**/pyproject.toml"
- name: hint on cache hit
if: steps.setup-uv.outputs.cache-hit == 'true'
run: echo "Hit cache"
- name: install dependencies
run: uv pip install .
- name: execute py script
run: python cngal_calendar.py
- name: check release changes
id: check_changes
run: if [[ $(git diff --name-only HEAD) == *"output/cngal-release.txt"* ]]; then echo "changes=true" > "$GITHUB_OUTPUT"; else echo "changes=false" > "$GITHUB_OUTPUT"; fi
- name: commit files only if new release is available
if: ${{ steps.check_changes.outputs.changes == 'true' }}
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add -A
git commit -m "ics: update release calendar" -a
- name: push changes
if: ${{ steps.check_changes.outputs.changes == 'true' }}
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main