diff --git a/plugin-ci/orb.yml b/plugin-ci/orb.yml index 0b14b95..4e34439 100644 --- a/plugin-ci/orb.yml +++ b/plugin-ci/orb.yml @@ -24,6 +24,10 @@ commands: from: << parameters.filename >> to: << parameters.bucket >> arguments: '--acl public-read --cache-control no-cache' + use-git-ssh: + description: Configure git to use ssh for dependencies that are fetched with git + steps: + - run: git config --global url."ssh://git@".insteadOf git:// install-golangci-lint: description: Install golangci-lint @@ -71,6 +75,7 @@ jobs: resource_class: xlarge steps: - checkout + - use-git-ssh - install-golangci-lint - *restore_cache - run: @@ -93,6 +98,7 @@ jobs: name: default steps: - checkout + - use-git-ssh - *restore_cache - run: make test - *save_cache @@ -102,6 +108,7 @@ jobs: name: default steps: - checkout + - use-git-ssh - *restore_cache - run: name: Generating Coverage Results @@ -115,6 +122,7 @@ jobs: name: default steps: - checkout + - use-git-ssh - run: name: Building Plugin Bundle command: make dist