-
Notifications
You must be signed in to change notification settings - Fork 5
39 lines (31 loc) · 926 Bytes
/
deploy.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
name: Build and Deploy
on:
push:
branches:
- main
workflow_dispatch:
permissions:
deployments: write
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: Publish to Cloudflare Pages
uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
command: pages deploy site --project-name=zjuintl-icicles
gitHubToken: ${{ secrets.GITHUB_TOKEN }}