-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix add to report #2295
Fix add to report #2295
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,7 +72,7 @@ spec: | |
buildVar="${1/\-/\_}" | ||
# convert to uppercase | ||
buildVar="${buildVar^^}" | ||
BUILD_${buildVar}=true | ||
BUILD=BUILD_${buildVar}=true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed bug I introduced. However, the test pipeline still doesn't work for some reason. |
||
if grep -s services/net/$folderName <<< $DIFF; then | ||
echo $BUILD >> build.env | ||
elif grep -s libs/net/services <<< $DIFF; then | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -410,6 +410,7 @@ Auth__Keycloak__Secret={YOU WILL NEED TO GET THIS FROM KEYCLOAK} | |
Auth__OIDC__Token=/realms/mmi/protocol/openid-connect/token | ||
|
||
Service__ApiUrl=http://host.docker.internal:$portApi/api | ||
Service__DataLocation=Openshift | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Makes it easier for new resources to get the syndication service running |
||
|
||
CHES__AuthUrl=https://dev.loginproxy.gov.bc.ca/auth/realms/comsvcauth/protocol/openid-connect/token | ||
CHES__HostUri=https://ches-dev.api.gov.bc.ca/api/v1 | ||
|
@@ -910,4 +911,4 @@ S3_ACCESS_KEY={Your S3_ACCESS_KEY} | |
S3_SECRET_KEY={Your S3_SECRET_KEY} | ||
S3_BUCKET={Your Bucket Name}" >> ./tools/objects-backup/.env | ||
echo "./tools/objects-backup/.env created" | ||
fi | ||
fi |
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.
This was causing issues on the first time adding content to a report.