Update Wiki编程的定义.tid #734
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 部署 Tiddlywiki 静态页面到 Github Pages | |
on: | |
push: | |
branches: | |
- master | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
jobs: | |
deploy: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
node-version: '18' | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: | | |
**/node_modules | |
key: ${{ runner.os }}-${{ hashFiles('**/package.json') }} | |
- name: 安装 NodeJS 依赖 | |
run: npm install | |
- name: 构建在线版本网页 | |
run: npm run buildonline | |
- name: 构建可下载离线版本的网页 | |
run: npm run buildoffline | |
- name: Workbox 离线缓存 | |
run: npx workbox injectManifest workbox-config.js | |
- name: 构建插件库 | |
run: npm run buildlibrary | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
# Upload entire repository | |
path: ./public-dist | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 | |
- uses: jsmrcaga/[email protected] | |
with: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_PERSONAL_ACCESS_TOKEN }} | |
NETLIFY_DEPLOY_TO_PROD: true | |
NETLIFY_SITE_ID: 2d87784e-fe3b-47a2-ae73-7a2f266f74a8 | |
build_directory: ./public-dist | |
NETLIFY_DEPLOY_MESSAGE: "Deployed from GitHub action" | |
install_command: "echo Skipping installing the dependencies" | |
build_command: "echo Skipping building the web files" |