Skip to content

Commit

Permalink
Windows Nightly CI
Browse files Browse the repository at this point in the history
Signed-off-by: Shveta Sachdeva <[email protected]>
  • Loading branch information
sshveta committed Jan 21, 2025
1 parent 05760d9 commit d426809
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/provision-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ jobs:
- name: Get EC2 Host (Public IP/DNS)
id: get-ec2-host
run: |
EC2_HOST=$(aws ec2 describe-instances --instance-ids ${{ steps.ec2.outputs.ec2-instance-id }} --query "Reservations[0].Instances[0].PublicIpAddress" --output text)
EC2_INSTANCE_ID="${{ steps.ec2.outputs.ec2-instance-id }}"
EC2_HOST=$(aws ec2 describe-instances --instance-ids $EC2_INSTANCE_ID --query "Reservations[0].Instances[0].PublicIpAddress" --output text)
echo "EC2 Host: $EC2_HOST"
echo "ec2-host=$EC2_HOST" >> $GITHUB_ENV
Expand Down

0 comments on commit d426809

Please sign in to comment.