Skip to content

Commit

Permalink
Trying to fix config upload issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Johanna Ahlskog committed Sep 26, 2023
1 parent c37d1ed commit 1a3b2ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/lib/ComplianceStateService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export class ComplianceStateService {
): Promise<void> {
// POST-request to Azure function
const urlUpdate: string = process.env.urlUpdate;
console.log("urlUpdate: " + urlUpdate)
const bodyBuilder: BodyBuilder = new BodyBuilder();
const responseBody: ResponseBody = bodyBuilder.createBody(
teamName,
Expand Down
3 changes: 3 additions & 0 deletions src/lib/UrlBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ export class UrlBuilder {
): string {
//Don´t forget to implement this as github secrets in the repository
const urlReadToReadMe: string = process.env.urlRead;
console.log("urlRead: " + urlReadToReadMe)
const urlDashboard: string = process.env.urlDashboard;
console.log("urlDashboard: " + urlDashboard)
const readToReadMeKeyAcessKey: string = process.env.readToReadMeKeyAcessKey;
console.log("readToReadMeKeyAcessKey: " + readToReadMeKeyAcessKey)
let urls: string = '';
let encodedURL: string;
let singleBadgeURL: string;
Expand Down

0 comments on commit 1a3b2ba

Please sign in to comment.