We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d142bce commit 83b2268Copy full SHA for 83b2268
1 file changed
.github/workflows/gen-docs.yaml
@@ -45,7 +45,7 @@ jobs:
45
run: |
46
LAST_COMMIT_HASH=$(cat last-squid-commit.txt || echo "")
47
cd squid
48
- CURRENT_COMMIT_HASH=$(git rev-parse HEAD)
+ CURRENT_COMMIT_HASH=$(git rev-parse --short HEAD)
49
echo "current=$CURRENT_COMMIT_HASH" >> $GITHUB_OUTPUT
50
if [ "$LAST_COMMIT_HASH" = "$CURRENT_COMMIT_HASH" -a "$FORCE_REBUILD" != "true" ]; then
51
echo "marking as no no updates"
@@ -75,7 +75,7 @@ jobs:
75
- name: Build programming guide
76
if: steps.check_squid_updates.outputs.had_update == 'true'
77
78
- sed -i~ 's/PROJECT_NUMBER = .*/& (commit ${{ steps.check_squid_updates.outputs.current }})/' doxyfile
+ sed -i~ 's/PROJECT_NUMBER = .*/&-${{ steps.check_squid_updates.outputs.current}}/' doxyfile
79
doxygen doxyfile
80
81
- name: update self
0 commit comments