Skip to content

Commit

Permalink
fixes deployment of branch docker images to AWS (#5280)
Browse files Browse the repository at this point in the history
removes erroneous 'event' qualifier for ref_type
  • Loading branch information
hughy authored Aug 15, 2024
1 parent aa24089 commit 9ced3cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-node-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
# Used to deploy a new 'evm' image to AWS
- name: Deploy Node Image to AWS:${{ github.ref_name }}
if: ${{ github.event.ref_type == 'branch'}}
if: ${{ github.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 }}
Expand Down

0 comments on commit 9ced3cb

Please sign in to comment.