Fix issue when organization
is not set but is needed.
Now the GHA will not panic and will print a message when organization
is required. For instance when comparing image to the one of an environment or when recording an image to an environment.
- uses: docker/scout-action@v0.23.2
with:
command: compare
image: ${{ step.meta.outputs.tags }}
to-env: staging
organization: my-docker-org
- uses: docker/scout-action@v0.23.2
with:
command: environment
image: ${{ step.meta.outputs.tags }}
environment: staging
organization: my-docker-org
rel: #14