Skip to content

Commit

Permalink
WIP calculate changed apps
Browse files Browse the repository at this point in the history
  • Loading branch information
bperel committed Aug 31, 2024
1 parent 2e6e5f1 commit 47ef3ad
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ jobs:

- name: Check apps changed since the last successful commit
run: |
changedApps=$(pnpm -r $changedAppsCommitFilter ls --depth -1 -j)
if [ "${{ env.NX_HEAD }}" == "ffffff" ]; then
changedAppsCommitFilter=''
else
changedAppsCommitFilter=" -F '[${{ env.NX_HEAD }}]'"
fi
echo "Changed apps: $changedApps"
- name: Install dependencies
Expand Down

0 comments on commit 47ef3ad

Please sign in to comment.