Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to add 10 hrs in the Get-Date in azure cli task for Azure pipeline?

I am using below and tried adding hrs without any luck. This returns time in UTC while I want the time in same format but 10 hrs ahead.


  - task: AzureCLI@2
    name: date
    displayName: dateValue
    inputs:
      azureSubscription: 'test'
      scriptType: 'pscore'
      scriptLocation: 'inlineScript'
      inlineScript: |
        $date = $(Get-Date -Format yyyy-MM-dd'T'HH:mm:ss)
        echo "##vso[task.setvariable variable=date]$date"

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

To add 10 hours to the Get-Date command in Azure CLI, you can use the AddHours method.

- task: AzureCLI@2
  name: date
  displayName: dateValue
  inputs:
    azureSubscription: 'test'
    scriptType: 'pscore'
    scriptLocation: 'inlineScript'
    inlineScript: |
      $date = $(Get-Date).AddHours(10)
      $formattedDate = $date.ToString("yyyy-MM-ddTHH:mm:ss")
      echo "##vso[task.setvariable variable=date]$formattedDate"
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading