Skip to content

Commit

Permalink
feat: 测试ci脚本构建
Browse files Browse the repository at this point in the history
  • Loading branch information
HardenSG committed Mar 2, 2024
1 parent b7bd62f commit 31f92a2
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/build.yml
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

0 comments on commit 31f92a2

Please sign in to comment.