Skip to content

modified: "source/\346\230\237\351\223\201.txt" #33

modified: "source/\346\230\237\351\223\201.txt"

modified: "source/\346\230\237\351\223\201.txt" #33

Workflow file for this run

name: generate ics
on:
push:
paths:
- source/*.txt
jobs:
generate-ics-files:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run script
run: python main.py
- name: Commit
run: |
git config --local user.email "[email protected]"
git config --local user.name "Trrrrw"
git add .
git commit -m "Auto convert"
- name: Push
uses: ad-m/github-push-action@master