Skip to content

Commit

Permalink
#20 Fix diff calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Hannebauer committed Jun 7, 2024
1 parent 5df3917 commit 88de00a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/auto-publish-in-azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- id: regexparsing
run: |
echo "Sha=$GITHUB_SHA"
diff=$(git diff --name-only --diff-filter=AM origin/master..${GITHUB_SHA} | tr '\n' ' ')
diff=$(git diff --name-only --diff-filter=AM ${GITHUB_SHA}^..${GITHUB_SHA} | tr '\n' ' ')
echo "test-x"
echo "diff=$diff"
[[ $diff =~ ([a-z-]+)\/[a-zA-Z-]*Artifacts-?([a-zA-Z]*)\.zip ]]
Expand Down

0 comments on commit 88de00a

Please sign in to comment.