-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
42 lines (42 loc) · 1015 Bytes
/
action.yml
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
name: "ArvanCloud PaaS Action"
author: "Arash Hatami"
description: "Deploy new changes to ArvanCloud PaaS"
branding:
icon: "cloud"
color: "blue"
inputs:
version:
description: "The version of CLI tool to use"
required: false
default: "1.3.6"
region:
description: "Your ArvanCloud Region"
required: false
default: "1"
auth:
description: "Your ArvanCloud API auth token"
required: true
app:
description: "The ArvanCloud app to deploy to"
required: true
container:
description: "The ArvanCloud container to deploy to"
required: true
image:
description: "Your new image to deploy"
required: true
namespace:
description: "The target namespace ( project )"
required: false
default: "default"
runs:
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.version }}
- ${{ inputs.region }}
- ${{ inputs.auth }}
- ${{ inputs.app }}
- ${{ inputs.container }}
- ${{ inputs.image }}
- ${{ inputs.namespace }}