Introduce redesigned project homepage; Fix #64 #65

- loaderConfigurator now renamed to pages, with configurator section supporting both v2 and v3 Cust
This commit is contained in:
KazushiM
2023-01-25 18:58:43 +08:00
parent 120367cf7c
commit f33a59370a
23 changed files with 1810 additions and 4952 deletions

View File

@@ -38,16 +38,16 @@ jobs:
uses: devatherock/minify-js@v1.0.3
with:
# File to minify or a folder containing files to minify. By default, all files in current folder and its subfolders will be minified
directory: './Source/loaderConfigurator/dist' # optional
directory: './pages/dist' # optional
# Path where the minified files will be saved. By default, the minified files will be saved in the original file path
output: './Source/loaderConfigurator/dist_min' # optional
output: './pages/dist_min' # optional
# Indicates if the output files should have the suffix '.min' added after the name. Default is true
add_suffix: false # optional
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
# Upload entire repository
path: './Source/loaderConfigurator/dist_min'
path: './pages/dist_min'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1