We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0f40ad commit 763f24dCopy full SHA for 763f24d
1 file changed
.github/workflows/operations.site.deploy.ddev.yml
@@ -119,17 +119,21 @@ jobs:
119
run-with-summary git clone --recursive ${{ inputs.git_repository }} ${{ inputs.git_root }}
120
fi
121
cd ${{ inputs.git_root }}
122
- git fetch origin
123
- git checkout --force ${{ inputs.git_reference }}
124
-
+
125
SUMMARY=""
+ SUCCESS="Pre-deploy git status" \
126
+ run-with-summary git log -1
127
- SUCCESS="git status" \
128
- run-with-summary git status
+ git fetch
129
+ git reset --hard origin/${{ inputs.git_reference }}
130
- SUCCESS="git log" \
131
+ SUCCESS="Post deploy git status" \
132
run-with-summary git log -1
133
134
+ SUCCESS="git status" \
135
+ run-with-summary git status
136
137
start-site:
138
name: Start site
139
runs-on: ${{ inputs.github_runs_on }}
0 commit comments