Deploy your docker container using opta.
Table of Contents
Add the following step to your workflow:
- name: Update deployment
uses: run-x/[email protected]
with:
env: runx-staging
image: app:latest
tag: ${{ github.sha }}
See action.yml for the full documentation for this action's inputs and outputs.
In order for the deploy action to execute properly, you will need to use other github actions for authentication.
webfactory/ssh-agent
, to allow access to other repositories' opta configuration files. Note that you only need to use this if you have opta.yml files in other repos.aws-actions/configure-aws-credentials
, to allow push and deploy to AWS. Make sure that the API key associated with this account has admin permissions.
# You only need to include this step if you have opta files outside of this repo
- name: Setup ssh
uses: webfactory/[email protected]
with:
# if you don't have a github SSH key, you can generate one here:
# https://docs.github.com/en/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent
ssh-private-key: ${{ secrets.GITHUB_SSH_KEY }}
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
# This aws account should have admin permissions
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
See example.yml.