37 lines
1003 B
YAML
37 lines
1003 B
YAML
name: Hello, World!
|
|
description: Greet someone and record the time
|
|
author: GitHub Actions
|
|
|
|
# Define your inputs here.
|
|
inputs:
|
|
project-config-path:
|
|
description: Project Config Path
|
|
required: false
|
|
default: 'deploy/we-chat/project.config.json'
|
|
upload-setting-path:
|
|
description: Upload Setting Path
|
|
required: false
|
|
default: 'deploy/we-chat/upload.setting.json'
|
|
upload-version:
|
|
description: Upload Version
|
|
required: false
|
|
default: '1.0.0'
|
|
upload-description:
|
|
description: Upload Description
|
|
required: false
|
|
default: ''
|
|
upload-robot:
|
|
description: Upload Robot
|
|
required: false
|
|
default: '1'
|
|
|
|
runs:
|
|
using: docker
|
|
image: Dockerfile
|
|
env:
|
|
INPUT_PROJECT_CONFIG_PATH: ${{ inputs.project-config-path }}
|
|
INPUT_UPLOAD_SETTING_PATH: ${{ inputs.upload-setting-path }}
|
|
INPUT_UPLOAD_VERSION: ${{ inputs.upload-version }}
|
|
INPUT_UPLOAD_DESCRIPTION: ${{ inputs.upload-description }}
|
|
INPUT_UPLOAD_ROBOT: ${{ inputs.upload-robot }}
|