Azure Pipelines
Store QUOLLVAULT_TOKEN as a secret pipeline variable and run the CLI after producing the artifact.
yaml
- script: |
quollvault config set api https://api.quollvault.com
quollvault config set app "$(QUOLLVAULT_APP_ID)"
quollvault config set environment "$(QUOLLVAULT_ENVIRONMENT_ID)"
quollvault upload ./build/app.apk
displayName: Upload to QuollVault
env:
QUOLLVAULT_TOKEN: $(QUOLLVAULT_TOKEN)QuollVault detects Azure Pipelines provenance from standard environment variables.
Common failures
Mark the token secret, verify the artifact path in the agent workspace and keep the Automation Token scoped to only the required Project/App.