We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcd2639 commit b0f40adCopy full SHA for b0f40ad
1 file changed
.github/workflows/operations.site.deploy.ddev.yml
@@ -116,10 +116,11 @@ jobs:
116
117
run: |
118
if [[ ! -d ${{ inputs.git_root }} ]]; then
119
- run-with-summary git clone ${{ inputs.git_repository }} ${{ inputs.git_root }}
+ run-with-summary git clone --recursive ${{ inputs.git_repository }} ${{ inputs.git_root }}
120
fi
121
cd ${{ inputs.git_root }}
122
- git checkout ${{ inputs.git_reference }}
+ git fetch origin
123
+ git checkout --force ${{ inputs.git_reference }}
124
125
SUMMARY=""
126
0 commit comments