-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathaction.yaml
More file actions
46 lines (46 loc) · 1.18 KB
/
action.yaml
File metadata and controls
46 lines (46 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: "GitHub Action for WeChat MiniProgram"
description: "A GitHub Action to automate deploying WeChat MiniProgram. Based on the miniprogram-ci."
author: "Crazy Urus"
branding:
icon: package
color: green
inputs:
action_type:
description: "Action type, preview or upload"
required: false
default: upload
project_path:
description: "Project path, which contains project.config.json"
required: false
default: "."
page_path:
description: "Page path, one of the pages in app.json"
required: false
page_query:
description: "Page query"
required: false
default: ""
scene:
description: "Scene code"
required: false
default: '1011'
version:
description: "Publish version"
required: false
default: 1.0.0
description:
description: "Release notes"
required: false
ci:
description: "Number of CI"
required: false
default: '24'
outputs:
preview_qrcode:
description: "The base64 content of the MiniProgram to preview the QR code"
preview_qrcode_path:
description: "The file path of the MiniProgram to preview the QR code"
runs:
using: "node16"
pre: "./scripts/install.js"
main: "./scripts/main.js"