Skip to content

Commit

Permalink
chore: 🤖 code format
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 19, 2024
1 parent a192fb0 commit be4ab19
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions src/commands/sites/utils/prepareGitHubActionsIntegration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,14 @@ import { requestDeploymentWorkflowInstallCommand } from './requestDeploymentWork
import { saveDeploymentWorkflowYaml } from './saveDeploymentWorkflowYaml';

export const ghWorkflowFilename = 'fleek-deploy.yaml';
export const ghActionsWorflowsDirectory = joinPath(process.cwd(), '.github/workflows');
export const ghActionsDeploySitesYamlPath = joinPath(ghActionsWorflowsDirectory, ghWorkflowFilename);
export const ghActionsWorflowsDirectory = joinPath(
process.cwd(),
'.github/workflows',
);
export const ghActionsDeploySitesYamlPath = joinPath(
ghActionsWorflowsDirectory,
ghWorkflowFilename,
);

type PrepareGitHubActionsIntegrationArgs = {
personalAccessToken: string;
Expand Down
2 changes: 1 addition & 1 deletion src/guards/sdkGuard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { getDefined } from '../defined';

import { output } from '../cli';
import { config } from '../config';
import { loginGuard } from './loginGuard';
import { t } from '../utils/translation';
import { loginGuard } from './loginGuard';

import type { Action, SdkGuardedFunction } from './types';

Expand Down

0 comments on commit be4ab19

Please sign in to comment.