Skip to content

Commit

Permalink
配置 Page Action
Browse files Browse the repository at this point in the history
  • Loading branch information
TakWolf committed Jul 20, 2024
1 parent 4165dda commit 572018a
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Pages

on:
push:
branches: [master]

concurrency:
group: pages
cancel-in-progress: true

jobs:
pages:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install pip --upgrade
python -m pip install -r requirements.txt
- name: Build
run: python -m tools.cli --cleanup --font-formats woff2 --html
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./build/outputs
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
7 changes: 7 additions & 0 deletions tools/build.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import logging
import os.path
import shutil

import configs
from configs import path_define
Expand All @@ -19,6 +21,11 @@ def main():
font_service.make_font_files(font_config, character_mapping, glyph_file_infos)
image_service.make_preview_image_file(font_config)

shutil.copy(
os.path.join(path_define.www_static_dir, 'index.html'),
os.path.join(path_define.outputs_dir, 'index.html'),
)


if __name__ == '__main__':
main()

0 comments on commit 572018a

Please sign in to comment.