Skip to content

rebuild-ical

rebuild-ical #484

Workflow file for this run

name: Build .ics files
on:
push:
branches:
- master
repository_dispatch:
types: [rebuild-ical]
jobs:
gh-pages:
name: Build .ics and deploy them
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Install python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build
run: bash buildall.sh
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
BRANCH: gh-pages
FOLDER: build
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SINGLE_COMMIT: true