Skip to content

Commit

Permalink
Fix diffs
Browse files Browse the repository at this point in the history
  • Loading branch information
EyalDelarea committed Nov 10, 2024
1 parent 098f16e commit 42b4f2d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/cleanup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ async function cleanup() {
async function buildInfoPostTasks() {
const disableAutoBuildPublish: boolean = core.getBooleanInput(Utils.AUTO_BUILD_PUBLISH_DISABLE);
const disableJobSummary: boolean = core.getBooleanInput(Utils.JOB_SUMMARY_DISABLE) || !Utils.isJobSummarySupported();

if (disableAutoBuildPublish && disableJobSummary) {
core.info(`Both auto-build-publish and job-summary are disabled. Skipping Build Info post tasks.`);
return;
Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class Utils {
// OpenID Connect audience input
private static readonly OIDC_AUDIENCE_ARG: string = 'oidc-audience';
// OpenID Connect provider_name input
static readonly OIDC_INTEGRATION_PROVIDER_NAME: string = 'oidc-provider-name';
private static readonly OIDC_INTEGRATION_PROVIDER_NAME: string = 'oidc-provider-name';
// Disable Job Summaries feature flag
public static readonly JOB_SUMMARY_DISABLE: string = 'disable-job-summary';
// Disable auto build info publish feature flag
Expand Down

0 comments on commit 42b4f2d

Please sign in to comment.