Skip to content

floms/action-caprover

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CapRover App Deploy

Action to deploy application to CapRover server

Inputs

host: required

CapRover machine url i.e., https://captain.your-domain.com

password: required

CapRover admin password. Use secret for more security

app: required

App name on CapRover server

branch

Branch which will be deployed

image

Image to be deployed. It should either exist on server, or it has to be public, or on a private repository that CapRover has access to.

NOTE: if image is used branch will be ignored

Usage

uses: floms/action-caprover@v1
with:
  host: 'https://captain.your-domain.com'
  password: '${{ secrets.CAPROVER_PASSWORD }}'
  app: 'my-app'
  image: 'YOUR-DOCKER-IMAGE-NAME'