Skip to content

Commit a241766

Browse files
Some improvements to the auto versioning and auto release workflows
1 parent 272e700 commit a241766

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
git fetch origin master
5858
CHANGED_FILES=$(git diff --name-only HEAD^ HEAD)
5959
echo "Changed files: $CHANGED_FILES"
60-
if echo "$CHANGED_FILES" | grep -qE 'CustomSettings.config|CalibreImport.dll|Setup.ps1'; then
60+
if echo "$CHANGED_FILES" | grep -qE "${{ env.BUILD_PATH }}/CustomSettings.config|${{ env.BUILD_PATH }}/CalibreImport.dll|${{ env.BUILD_PATH }}/Setup.ps1"; then
6161
echo "FILES_CHANGED=true" >> $GITHUB_ENV
6262
else
6363
echo "FILES_CHANGED=false" >> $GITHUB_ENV

0 commit comments

Comments
 (0)