Skip to content

Commit a3b3621

Browse files
committed
Rename DOXYGEN_VERSION_NUMBER to DOXYGEN_VERSION.
1 parent 91806a9 commit a3b3621

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -219,13 +219,13 @@ jobs:
219219
cd zip-check/${{ env.repository_compressed_name }}/"$REPO_NAME"
220220
221221
# find "PROJECT_NUMBER = <version_number>"
222-
DOXYGEN_VERSION_NUMBER=$(grep -x "[ ]*PROJECT_NUMBER[ ]*=[ ]*[^ ]*[ ]*" docs/doxygen/config.doxyfile | awk -F= '{gsub(" ","",$2); print $2 }');
222+
DOXYGEN_VERSION=$(grep -x "[ ]*PROJECT_NUMBER[ ]*=[ ]*[^ ]*[ ]*" docs/doxygen/config.doxyfile | awk -F= '{gsub(" ","",$2); print $2 }');
223223
224224
# compare the <version_number> with input version number
225-
echo "Comparing $DOXYGEN_VERSION_NUMBER & $VERSION_NUMBER"
226-
[[ '$DOXYGEN_VERSION_NUMBER' == $VERSION_NUMBER ]] \
225+
echo "Comparing $DOXYGEN_VERSION & $VERSION_NUMBER"
226+
[[ $DOXYGEN_VERSION == $VERSION_NUMBER ]] \
227227
&& echo "config.doxyfile : match $VERSION_NUMBER" \
228-
|| { echo "config.doxyfile : $DOXYGEN_VERSION_NUMBER doesn't match $VERSION_NUMBER"; exit 255; }
228+
|| { echo "config.doxyfile : $DOXYGEN_VERSION doesn't match $VERSION_NUMBER"; exit 255; }
229229
230230
- name: Check version number in manifest.yml
231231
env:

0 commit comments

Comments
 (0)