-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2076 from makeplane/develop
Promote: Develop to Stage Release
- Loading branch information
Showing
1,024 changed files
with
2,024 additions
and
1,581 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
changed_files=$(git diff --name-only HEAD~1) | ||
|
||
web_changed=$(echo "$changed_files" | grep -E '^web/' || true) | ||
space_changed=$(echo "$changed_files" | grep -E '^space/' || true) | ||
echo $web_changed | ||
echo $space_changed | ||
|
||
if [ -n "$web_changed" ] && [ -n "$space_changed" ]; then | ||
echo "Changes detected in both web and space. Building..." | ||
yarn run lint | ||
yarn run build | ||
elif [ -n "$web_changed" ]; then | ||
echo "Changes detected in web app. Building..." | ||
yarn run lint --filter=web | ||
yarn run build --filter=web | ||
elif [ -n "$space_changed" ]; then | ||
echo "Changes detected in space app. Building..." | ||
yarn run lint --filter=space | ||
yarn run build --filter=space | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
2b84b7c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
plane-staging – ./web/
plane-staging-plane.vercel.app
plane-staging-git-stage-release-plane.vercel.app
plane-app-eight.vercel.app
takeoff.plane.so