How to list Azure environment variables in a release job step for debugging

# Output environment variables
- bash: |
    echo "===== Environment Variables (sorted) ====="
    env | sort
  displayName: "List environment variables"

Above will not list library (enviroment) variables marked as secret.

Leave a Reply

Your email address will not be published. Required fields are marked *