We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd61b23 commit 06a8714Copy full SHA for 06a8714
1 file changed
eng/templates/build.yml
@@ -39,4 +39,24 @@ jobs:
39
inputs:
40
SourceFolder: dist
41
Contents: '**'
42
- TargetFolder: $(Build.ArtifactStagingDirectory)
+ TargetFolder: $(Build.ArtifactStagingDirectory)
43
+
44
+ - task: ManualValidation@1
45
+ timeoutInMinutes: 1440 # task times out in 1 day
46
+ inputs:
47
+ notifyUsers: |
48
+ andystaples@microsoft.com
49
+ instructions: 'Approve publish of azure-functions-durable to PyPi'
50
+ onTimeout: 'reject'
51
52
+ - script: |
53
+ pip install wheel
54
+ pip install twine
55
56
+ - task: TwineAuthenticate@1
57
+ displayName: Twine Authenticate
58
59
+ pythonUploadServiceConnection: azure-functions-durable-pypi
60
61
62
+ python -m twine upload --config-file $(PYPIRC_PATH) dist/*
0 commit comments