-
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.
feat: hack:增加微信dist产物自动化上传 fix: 更新ci监听branch
- Loading branch information
Showing
6 changed files
with
7,194 additions
and
17 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,55 @@ | ||
name: build weapp ci | ||
|
||
on: | ||
# 监听PUSH和PR | ||
push: | ||
branches: [ main ] | ||
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 | ||
|
||
# 安装upload Dependencies | ||
- name: Install UploadDist Dependencies | ||
run: pnpm uploadInstall | ||
|
||
# 构建小程序 | ||
- 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: pnpm uploadDist |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.