From 171efb9434d223542391cae1db50b5da0f542c1b Mon Sep 17 00:00:00 2001 From: Greg Martin Date: Thu, 16 Oct 2025 16:42:32 -0400 Subject: [PATCH 1/2] fix: deploy github action --- .github/workflows/deploy.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 11629ed6b..0727c8da2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -108,17 +108,11 @@ jobs: - name: Check for Version Changes id: changes run: | - git status - git diff --name-only - # Check for changes excluding .yarnrc.yml if git diff --quiet HEAD -- ':!.yarnrc.yml'; then echo "has_changes=false" >> $GITHUB_OUTPUT - echo "No version changes detected (excluding .yarnrc.yml)" else echo "has_changes=true" >> $GITHUB_OUTPUT - echo "Version changes detected (excluding .yarnrc.yml)" fi - echo "Output set to: $(cat $GITHUB_OUTPUT | grep has_changes)" - name: Publish if: steps.changes.outputs.has_changes == 'true' From 7ae998fde58f736ed60617f03105129c0d097265 Mon Sep 17 00:00:00 2001 From: Greg Martin Date: Thu, 16 Oct 2025 16:49:35 -0400 Subject: [PATCH 2/2] fix: deploy github action --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0727c8da2..bd8dd6435 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -108,7 +108,7 @@ jobs: - name: Check for Version Changes id: changes run: | - if git diff --quiet HEAD -- ':!.yarnrc.yml'; then + if [ "$(git rev-list --count HEAD^..HEAD)" -eq 0 ]; then echo "has_changes=false" >> $GITHUB_OUTPUT else echo "has_changes=true" >> $GITHUB_OUTPUT