-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: build weapp ci | ||
|
||
on: | ||
# 监听PUSH和PR | ||
push: | ||
branches: [ main, feat-release-build-ci ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
# 选择运行在ubuntu | ||
runs-on: ubuntu-latest | ||
|
||
# 配置下私有值 | ||
strategy: | ||
matrix: | ||
# 使用18.18.0版本 | ||
node-version: [18.18.0] | ||
|
||
steps: | ||
# 把代码checkout下来 | ||
- uses: actions/checkout@v2 | ||
|
||
# 安装node | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2.5.1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
# 安装pnpm | ||
- name: Install Pnpm | ||
run: npm i -g pnpm | ||
|
||
# 安装依赖 | ||
- name: Install Dependencies | ||
run: pnpm i | ||
|
||
# 构建小程序 | ||
- name: Build weapp | ||
run: pnpm build:weapp | ||
|
||
# # 从 secrets.UPLOAD_PRIVATE_KEY 生成私钥文件 | ||
# # see Project/Settings/Secrets | ||
# - name: Generate private key for upload | ||
# run: echo "$UPLOAD_PRIVATE_KEY" > private.key | ||
# env: | ||
# UPLOAD_PRIVATE_KEY: ${{ secrets.UPLOAD_PRIVATE_KEY }} | ||
# # 上传代码 | ||
# - name: Upload to WeChat | ||
# run: npx mp-ci upload ./ --pkp=./private.key --no-test |