Add English US translation #2 #46
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: 构建网页版本并部署到 Github Pages | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
build-web: | |
name: 构建网页版本并部署到 Github Pages | |
runs-on: ubuntu-latest | |
steps: | |
- name: 克隆仓库源代码 | |
uses: actions/checkout@v2.3.4 | |
with: | |
submodules: recursive | |
path: amll-ttml-tool | |
- name: 克隆 AMLL 仓库源代码 | |
uses: actions/checkout@v2.3.4 | |
with: | |
repository: Steve-xmh/applemusic-like-lyrics | |
ref: 3.0-dev | |
submodules: recursive | |
path: applemusic-like-lyrics | |
- name: 配置 NodeJS | |
uses: actions/setup-node@v3.0.0 | |
- name: 安装 wasm-pack | |
uses: jetli/wasm-pack-action@v0.4.0 | |
with: | |
version: latest | |
- name: AMLL - 构建 WS Protocol 模块 | |
run: wasm-pack build --target bundler --release --scope applemusic-like-lyrics | |
working-directory: applemusic-like-lyrics/packages/ws-protocol | |
- name: AMLL - 构建 Lyric 模块 | |
run: wasm-pack build --target bundler --release --scope applemusic-like-lyrics | |
working-directory: applemusic-like-lyrics/packages/lyric | |
- name: AMLL - 构建 FFT 模块 | |
run: wasm-pack build --target bundler --release --scope applemusic-like-lyrics | |
working-directory: applemusic-like-lyrics/packages/fft | |
- name: AMLL - 安装依赖 | |
run: yarn install | |
working-directory: applemusic-like-lyrics | |
env: | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
- name: AMLL - 构建 Core 模块 | |
run: yarn build | |
working-directory: applemusic-like-lyrics/packages/core | |
- name: AMLL - 构建 Vue 模块 | |
run: yarn build | |
working-directory: applemusic-like-lyrics/packages/vue | |
- name: AMLL - 构建 TTML 模块 | |
run: yarn build | |
working-directory: applemusic-like-lyrics/packages/ttml | |
- name: 安装前端依赖 | |
run: yarn install | |
working-directory: amll-ttml-tool | |
env: | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
- name: 构建网页版本 | |
run: yarn build | |
working-directory: amll-ttml-tool | |
- name: 部署到 Github Pages | |
uses: crazy-max/ghaction-github-pages@v2.6.0 | |
with: | |
target_branch: gh-pages | |
build_dir: amll-ttml-tool/dist | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |