This Action runs the export Command in a specific resource and creates a file with the output. The file created can be read and managed by any post action.
This Action performs an operation to move a given build from one rack to another.
Convox describe this process in their documentation for build deployment
Caveat: the app name is assumed to be the same in both racks
Required The name of the Convox Rack containing the app you wish to run the command against
Required The name of the app you wish to run the command against
Required The id of the build to move
Required The name of of the rack to export the build from
Required The name of of the rack to import the build to
steps:
- name: login
id: login
uses: convox/action-login@v2
with:
password: ${{ secrets.CONVOX_DEPLOY_KEY }}
- name: build
uses: digivizer/action-build@master
with:
rack: staging
app: myapp
- name: move the build
uses: convox/action-build-move@master
with:
rack: staging
app: myapp
build: RTMYCXTCPUY
destination: production