You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The actual url needed for will be the base url with the branch in which the code will be pushed. Since art code will be run in the art directory, we all append that directory
url=$baseurl${BRANCH}"/art/";
echo 'Base href -> ' $url;
#if the code is push on the main branch
[ ${BRANCH} = 'main' ] && ng build --configuration production --base-href=https://www.section508.gov/art/;
#if the code is pushed on any pther brnach, they will be using federalist cloud from url
[ ${BRANCH} != 'main' ] && ng build --configuration dev --base-href=$url;