Skip to content

Commit

Permalink
Update continuous-delivery.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lodewiges authored Nov 12, 2024
1 parent dd37aa9 commit d96386b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
INPUT_MERGE: ${{ inputs.merge }}
run: |
if [ "$GITHUB_REF_NAME" = 'master' ]; then
if [ "$INPUT_MERGE" ]; then
if [ "$INPUT_MERGE" == 'true' ]; then
git fetch origin staging
if ! git diff origin/master origin/staging --exit-code; then
echo 'has_diff=true' >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit d96386b

Please sign in to comment.