You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i am using aws ec2 to deploy my code, and i wanna do it with pipeline CI/CD on azure devops.
any ideas how to deploy into aws.
how to know those credentials in the script: $DEPLOYMENT_USERNAME, $DEPLOYMENT_PASSWORD and $DEPLOYMENT_URL
script: |
git push -f "https://$DEPLOYMENT_USERNAME:$DEPLOYMENT_PASSWORD@$DEPLOYMENT_URL" HEAD:master
env:
DEPLOYMENT_URL: $(DEPLOYMENT_URL)
DEPLOYMENT_USERNAME: $(DEPLOYMENT_USERNAME)
DEPLOYMENT_PASSWORD: $(DEPLOYMENT_PASSWORD)
displayName: 'LocalGit Deploy'
The text was updated successfully, but these errors were encountered:
i am using aws ec2 to deploy my code, and i wanna do it with pipeline CI/CD on azure devops.
any ideas how to deploy into aws.
how to know those credentials in the script: $DEPLOYMENT_USERNAME, $DEPLOYMENT_PASSWORD and $DEPLOYMENT_URL
script: |
git push -f "https://$DEPLOYMENT_USERNAME:$DEPLOYMENT_PASSWORD@$DEPLOYMENT_URL" HEAD:master
env:
DEPLOYMENT_URL: $(DEPLOYMENT_URL)
DEPLOYMENT_USERNAME: $(DEPLOYMENT_USERNAME)
DEPLOYMENT_PASSWORD: $(DEPLOYMENT_PASSWORD)
displayName: 'LocalGit Deploy'
The text was updated successfully, but these errors were encountered: