This Action Promotes a previously built app to Convox. You will typically need to perform the Build action prior to running this action.
Required The name of the Convox Rack you wish to deploy to.
Required The name of the app you wish to deploy.
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
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