core: 修正渐变过渡 #311
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: "调试开发构建 BNCM 插件" | |
on: push | |
jobs: | |
pre-release: | |
name: 调试开发构建 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
name: 克隆仓库 | |
- name: 安装 wasm-pack | |
uses: jetli/wasm-pack-action@v0.4.0 | |
with: | |
version: latest | |
- name: 安装 wasm32 目标 | |
run: rustup target add wasm32-unknown-unknown | |
- name: 构建 BNCM 插件 | |
run: | | |
yarn | |
yarn lerna run build:dev --scope "@applemusic-like-lyrics/*" | |
env: | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
AMLL_GITHUB_IS_ACTION: true | |
- uses: marvinpinto/action-automatic-releases@latest | |
name: 发布到 Github Release | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
automatic_release_tag: ${{ github.ref_name }}-nightly | |
prerelease: true | |
title: 最新 ${{ github.ref_name }} 分支开发调试构建 | |
files: packages/bncm/dist/*.plugin |