Skip to content

Commit

Permalink
Update main.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
joosangkim authored May 30, 2024
1 parent f7f8bc7 commit 72a969d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ async function setupArgoCDCommand(): Promise<(params: string) => Promise<ExecRes
async function getApps(): Promise<App[]> {
const url = `https://${ARGOCD_SERVER_URL}/api/v1/applications?fields=items.metadata.name,items.spec.source.path,items.spec.source.repoURL,items.spec.source.targetRevision,items.spec.source.helm,items.spec.source.kustomize,items.status.sync.status`;
core.info(`Fetching apps from: ${url}`);
core.debug(process.arch)
core.debug(process.platform)
core.debug(`https://github.com/argoproj/argo-cd/releases/download/${VERSION}/argocd-${PLATFORM}-${ARCH}`)
core.info(process.arch)
core.info(process.platform)
core.info(`https://github.com/argoproj/argo-cd/releases/download/${VERSION}/argocd-${PLATFORM}-${ARCH}`)
// eslint-disable-next-line @typescript-eslint/no-explicit-any
let responseJson: any;
try {
Expand Down

0 comments on commit 72a969d

Please sign in to comment.