Skip to content

Commit

Permalink
changed some lines
Browse files Browse the repository at this point in the history
  • Loading branch information
emiliaup committed Apr 30, 2024
1 parent 51bc6a5 commit 320cfd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
# Almacena primero en un secret el deploymentId
id: create-deployment-trigger
run: |
deploymentId=$(aws deploy create-deployment\
deploymentId=$(\
aws deploy create-deployment --application-name \
IIC2173-CD-Ayudantia --deployment-group-name IIC2173-Group --region us-east-2 \
--s3-location bucket=iic2173,key=deploy.zip,bundleType=zip \
Expand All @@ -100,6 +100,6 @@ jobs:
# aws deploy wait deployment-successful --deployment-id $deploymentId --region us-east-2
# Espera que el deployment termine
run: |
aws deploy wait deployment-successful --deployment-id <deployment-id> --region us-east-2
aws deploy wait deployment-successful --deployment-id ${{steps.create-deployment-trigger.outputs.deploymentId}}

0 comments on commit 320cfd9

Please sign in to comment.