Skip to content

Commit

Permalink
allows deploying branch-named docker images to AWS (#5271)
Browse files Browse the repository at this point in the history
this will allow us to deploy a docker image to AWS named for the 'evm' branch or
any branch that includes this change
  • Loading branch information
hughy committed Aug 14, 2024
1 parent 58bfd12 commit 6367504
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/deploy-node-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,13 @@ jobs:
docker tag ironfish ${{ secrets.AWS_NODE_REGISTRY_URL }}/ironfish:${{ github.ref_name }}
docker push ${{ secrets.AWS_NODE_REGISTRY_URL }}/ironfish:${{ github.ref_name }}
# Used to deploy a new 'evm' image to AWS
- name: Deploy Node Image to AWS:${{ github.ref_name }}
if: ${{ github.event.ref_type == 'branch'}}
run: |
docker tag ironfish ${{ secrets.AWS_NODE_REGISTRY_URL }}/ironfish:${{ github.ref_name }}
docker push ${{ secrets.AWS_NODE_REGISTRY_URL }}/ironfish:${{ github.ref_name }}
- name: Deploy Node Image to AWS:testnet
if: ${{ inputs.aws_tag_testnet }}
run: |
Expand Down

0 comments on commit 6367504

Please sign in to comment.