Skip to content

some fixes

some fixes #42

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
if: github.repository == 'ZJUIntl-share/zjuintl-icicles'
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
cache: pip
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Update dir and build
run: python3 .github/scripts/build.py
- name: Upload
uses: actions/upload-pages-artifact@v3
with:
path: site
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4