3

In Devops. I'm trying to deploy a project in to Azure web app. How to use publish profile password?


DevOps capture


The help message doesn't give me any help too...

Help Message

Ben
  • 411
  • 3
  • 17

2 Answers2

3

PublishProfilePassword(Publish profile password) : The password for the profile file. Consider storing the password in a secret variable and using that variable here. Example: $(Password).

Please refer to this document.

The downloaded publishing profile contains your password in the userPWD variable.

enter image description here

For details ,please refer to this document.

Hugh Lin
  • 17,829
  • 2
  • 21
  • 25
  • Thank you and I actually found the password should be set as here. And I can get the real password from the publish profile. – Ben Jul 28 '20 at 07:34
-1

I found config the password on variable tab.

enter image description here

enter image description here

Ben
  • 411
  • 3
  • 17
  • 1
    Finally I didn't found a resolve for this question. I used FTP to upload the deploy target files.. – Ben Jul 31 '20 at 09:17