-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (29 loc) · 799 Bytes
/
action.yml
File metadata and controls
31 lines (29 loc) · 799 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
name: 'Deploy Github repo to Caprover'
description: 'Github Action for deploying your app to Caprover.'
author: 'Caprover Contributors'
inputs:
server:
description: 'Captover server URL, i.e. https://captain.apps.your-domain.com.'
required: true
token:
description: 'App Token'
required: true
app:
description: 'App Name'
required: true
branch:
description: 'Branch to be deployed'
required: false
image:
description: 'Docker image to be deployed'
required: false
runs:
using: 'docker'
image: 'Dockerfile'
# image: 'docker://ghcr.io/caprover/deploy-from-github:main'
# env:
# server: ${{ inputs.server }}
# app: ${{ inputs.app }}
# token: ${{ inputs.token }}
# image: ${{ inputs.image }}
# branch: ${{ inputs.branch }}