Integrating with Azure DevOps Pipelines
Run Seal in an Azure DevOps Pipelines job.
Before you start
The step
- bash: |
curl -fsSL https://github.com/seal-community/cli/releases/download/latest/seal-linux-amd64-latest.zip -o seal.zip
unzip seal.zip && chmod +x seal
export SEAL_TOKEN=$(SEAL_TOKEN)
export SEAL_PROJECT=my-project-id
./seal fix --mode all
displayName: Run Seal CLIRelated
Last updated