Hi everyone.
I’ll try and shorten my config example to an absolute minimum, and then ask my question-
version: 2.1
orbs:
aws-ecr: circleci/aws-ecr@7.0.0
git-secret: lyvly/git-secret@0.1.0
jobs:
reveal-secrets:
docker:
- image: 'circleci/node:10.16.3'
steps:
- git-secret/install_git_secret
- git-secret/import_gpg_key:
variable_name: GPG_PRIVATE_KEY
- git-secret/reveal_secrets
workflows:
build-and-test:
jobs:
- aws-ecr/build-and-push-image:
pre-steps:
- checkout
- reveal-secrets
The above configuration is telling me I can’t use reveal-secrets
in my pre-steps with the following error:
Cannot find a definition for command named reveal-secrets
Can’t I somehow use this job in my pre-steps?