-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathaction.yml
32 lines (32 loc) · 839 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
name: Orbit Deploy
author: Miguel Piedrafita
description: Deploy an Orbit application
branding:
icon: upload-cloud
color: purple
inputs:
orbit-url:
required: true
description: URL to your Orbit instance
orbit-token:
required: true
description: Authentication token for your Orbit instance
site:
required: true
description: Name of the site to deploy
ref:
required: false
description: The git ref to deploy
outputs:
results:
description: The results from calling `myapp`
runs:
using: docker
image: docker://ghcr.io/m1guelpf/orbit-cli:edge
env:
DEPLOY_REF: ${{ inputs.ref }}
ORBIT_URL: ${{ inputs.orbit-url }}
ORBIT_TOKEN: ${{ inputs.orbit-token }}
args:
- deploy
- ${{ inputs.site }}