diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml new file mode 100644 index 0000000..11a5a57 --- /dev/null +++ b/.github/workflows/pages.yml @@ -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.build + - 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 diff --git a/tools/build.py b/tools/build.py index 4ef6683..84cfab4 100644 --- a/tools/build.py +++ b/tools/build.py @@ -1,4 +1,6 @@ import logging +import os.path +import shutil import configs from configs import path_define @@ -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()