Skip to content

Commit

Permalink
Merge pull request #405 from curvefi/main
Browse files Browse the repository at this point in the history
update develop branch
  • Loading branch information
DanielSchiavini authored Oct 21, 2024
2 parents 34ad574 + 95ef42a commit 42f52ea
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ yarn-error.log*
# husky
.husky

# vercel
.vercel

# lingui compiled translation files
src/locales/_build/
src/locales/**/*.js
Expand Down
14 changes: 14 additions & 0 deletions .vercel/dao-branch-filtering.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

echo "VERCEL_GIT_COMMIT_REF: $VERCEL_GIT_COMMIT_REF"

if [[ "$VERCEL_GIT_COMMIT_REF" == "staging" || "$VERCEL_GIT_COMMIT_REF" == "task/init-dao-app" ]] ; then
# Proceed with the build
echo "✅ - Build can proceed"
exit 1;

else
# Don't build
echo "🛑 - Build cancelled"
exit 0;
fi
14 changes: 14 additions & 0 deletions .vercel/storybook-branch-filtering.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

echo "VERCEL_GIT_COMMIT_REF: $VERCEL_GIT_COMMIT_REF"

if [[ "$VERCEL_GIT_COMMIT_REF" == "develop" ]] ; then
# Proceed with the build
echo "✅ - Build can proceed"
exit 1;

else
# Don't build
echo "🛑 - Build cancelled"
exit 0;
fi
Empty file added apps/dao/.gitkeep
Empty file.
Empty file added packages/curve-ui-kit/.gitkeep
Empty file.

0 comments on commit 42f52ea

Please sign in to comment.