Skip to content

Commit 7664ebd

Browse files
authored
fix: specify full checkout for (monorepo_)release (IN-3314) (#368)
1 parent 7906688 commit 7664ebd

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

src/jobs/monorepo/monorepo_release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ steps:
5555
- add_ssh_keys:
5656
fingerprints:
5757
- "<< parameters.ssh_key >>"
58-
- checkout
58+
- checkout:
59+
method: full
5960
- install_node_modules:
6061
install_args: "<< parameters.install_args >>"
6162
avoid_post_install_scripts: "<< parameters.avoid_post_install_scripts >>"

src/jobs/monorepo/sonarcloud_scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ parameters:
99
default: false
1010
executor: << parameters.executor >>
1111
steps:
12-
- checkout_clone
12+
- checkout
1313
- attach_workspace:
1414
at: ~/voiceflow
1515
- when:

src/jobs/release/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ steps:
4444
- add_ssh_keys:
4545
fingerprints:
4646
- "<< parameters.ssh_key >>"
47-
- checkout
47+
- checkout:
48+
method: full
4849
- install_node_modules:
4950
install_args: "<< parameters.install_args >>"
5051
avoid_post_install_scripts: "<< parameters.avoid_post_install_scripts >>"

0 commit comments

Comments
 (0)