I have a python script on my Azure Repository. It is called build.py and it's inside folder swagger_updater. I am able to use it in a Build Pipeline easily, with the following script:
steps:
- task: PythonScript@0
inputs:
scriptSource: filePath
scriptPath: swagger_updater/build.py
pythonInterpreter: /usr/bin/python3
Now, I want to run in the Release Pipeline, my release.py script which is in the same swagger_updater folder. What should I write in the Script Path? If I write swagger_updater/release.py it does not work. Please, see this image