Skip to content

Commit

Permalink
deactivate dry-run mode
Browse files Browse the repository at this point in the history
  • Loading branch information
spearwolf committed Oct 7, 2023
1 parent f4f29ee commit 2eae920
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
node-version: 18
cache: 'npm'

- run: npm ci --force
- run: npm i --force
name: Install dependencies

- run: npm run publishNpmPkg
Expand Down
2 changes: 1 addition & 1 deletion scripts/publishNpmPkg.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import path from 'node:path';
import {fileURLToPath} from 'node:url';
import {exec, execSync} from 'node:child_process';

const DRY_RUN = true || process.argv.includes('--dry-run');
const DRY_RUN = false || process.argv.includes('--dry-run');

const workspaceRoot = path.resolve(fileURLToPath(import.meta.url), '../../');
const projectRoot = path.resolve(process.cwd());
Expand Down

0 comments on commit 2eae920

Please sign in to comment.