Merged in fix/branch-sync (pull request #2625)
fix(branch sync): check if cached commit ref exists before ignoring builds * fix(branch sync): check if cached commit ref exists before ignoring builds Approved-by: Joakim Jäderberg
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
[build]
|
||||
command = "yarn test && yarn build:sas"
|
||||
publish = "apps/partner-sas/.next"
|
||||
ignore = "git diff --quiet $CACHED_COMMIT_REF $COMMIT_REF apps/partner-sas packages/common packages/trpc packages/design-system packages/typescript-config"
|
||||
|
||||
ignore = "if [[ -v $CACHED_COMMIT_REF ]] ; then false ; else git diff --quiet $CACHED_COMMIT_REF $COMMIT_REF apps/partner-sas packages/common packages/trpc packages/design-system packages/typescript-config ; fi"
|
||||
|
||||
[context.branch-deploy]
|
||||
command = "yarn test && yarn build:sas"
|
||||
|
||||
Reference in New Issue
Block a user