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 23, 2024
1 parent 3423902 commit 112aeaf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ jobs:

- name: Check apps changed since the last successful commit
run: |
changedApps=$(pnpm -r $changedAppsCommitFilter -F './apps/**' ls --depth -1 -j)
changedApps=$(pnpm -r $changedAppsCommitFilter ls --depth -1 -j)
echo "Changed apps: $changedApps"
- name: Install dependencies
run: |
set -x
pnpm -r $changedAppsCommitFilter -F './apps/**' install
pnpm -r $changedAppsCommitFilter install
- name: Build apps
run: |
pnpm -r $changedAppsCommitFilter -F './apps/**' build
pnpm -r $changedAppsCommitFilter build
exit 1

0 comments on commit 112aeaf

Please sign in to comment.