-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathaction.yml
More file actions
35 lines (35 loc) · 885 Bytes
/
action.yml
File metadata and controls
35 lines (35 loc) · 885 Bytes
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
name: 'Monday Code Deploy'
description: 'Deploy app to Monday code'
inputs:
token:
description: 'Monday developer token'
required: true
appId:
description: 'The ID of your monday app'
required: false
region:
description: 'The region to deploy the app to (us, eu, au)'
required: false
versionId:
description: 'The app version ID to deploy to'
required: false
force:
description: 'Force push to the latest version (draft or live)'
required: false
client:
description: 'Push client side code to cdn'
required: false
dirPath:
description: 'Path to the directory to upload'
required: false
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.token }}
- ${{ inputs.appId }}
- ${{ inputs.region }}
- ${{ inputs.versionId }}
- ${{ inputs.force }}
- ${{ inputs.client }}
- ${{ inputs.dirPath }}