Integrating with CircleCI
Run Seal in a CircleCI pipeline.
Before you start
The job
seal_fix:
docker:
- image: cimg/base:stable
environment:
SEAL_PROJECT: my-project-id
steps:
- checkout
- run:
command: |
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
./seal fix --mode allRelated
Last updated