Skip to content

convox/action-promote

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Convox Promote Action

This Action Promotes a previously built app to Convox. You will typically need to perform the Build action prior to running this action.

Inputs

rack

Required The name of the Convox Rack you wish to deploy to.

app

Required The name of the app you wish to deploy.

release

Optional The ID of the release you wish to promote. If you have run a Build action as a previous step this step will promote the release created by that build step by default. You only need to set the release if you have not run a build step first or you wish to override the release id from the build step

Example usage

steps:
- name: login
  uses: convox/action-login@v1
  with:
    password: ${{ secrets.CONVOX_DEPLOY_KEY }}
- name: build
  id: build
  uses: convox/action-build@v1
  with:
    rack: staging
    app: myapp
- name: promote
  uses: convox/action-promote@v1
  with:
    rack: staging
    app: myapp

About

A Github Action to promote a release on the Convox platform

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors