We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95c4d02 commit 9573e72Copy full SHA for 9573e72
.github/workflows/vs-testing.yml
@@ -14,8 +14,11 @@ jobs:
14
echo "TMP_DIR=$TMP_DIR" >> $GITHUB_ENV
15
echo "Using temp directory: $TMP_DIR"
16
17
- - name: Manually clone repo within tmp dir
18
- run: git clone --depth 1 --branch "${GITHUB_REF_NAME}" https://github.com/${GITHUB_REPOSITORY}.git
+ - name: Manually clone repo within tmp dir and submodule deps
+ run: |
19
+ git clone --depth 1 --branch "${GITHUB_REF_NAME}" https://github.com/${GITHUB_REPOSITORY}.git
20
+ cd sarus-hooks
21
+ git submodule update --init --recursive --depth 1
22
working-directory: ${{ env.TMP_DIR }}
23
24
- name: List contents of TMP_DIR
0 commit comments