Skip to content

Commit

Permalink
chore: add debug option on CI/CD (#906)
Browse files Browse the repository at this point in the history
<!-- For Coveo Employees only. Fill this section.

https://coveord.atlassian.net/browse/CDX-1126

-->

## Proposed changes

Derp: I need DEBUG=*. It was equal to "true".
  • Loading branch information
louis-bompart committed Aug 29, 2022
1 parent cf00826 commit 51e2744
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
VERSION: ${{ inputs.version }}
DEBUG: ${{ inputs.debug && 'true' || '' }}
DEBUG: ${{ inputs.debug && '*' || '' }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"release": "npm run nx:graph && npm run release:phase1 && npm run release:phase2 && npm run release:phase3",
"nx:graph": "nx graph --file=topology.json",
"release:phase1": "node --experimental-specifier-resolution=node ./scripts/releaseV2/phase1-get-new-version.mjs",
"release:phase2": "nx run-many --target=release:phase2 --all",
"release:phase2": "nx run-many --target=release:phase2 --all --parallel=false",
"release:phase3": "node --experimental-specifier-resolution=node ./scripts/releaseV2/phase3-git-commit-tag-push.mjs"
},
"workspaces": [
Expand Down
1 change: 1 addition & 0 deletions packages/cli/commons-dev/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
project.json
1 change: 1 addition & 0 deletions packages/cli/commons/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
project.json
2 changes: 1 addition & 1 deletion packages/cli/commons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"scripts": {
"build": "tsc -p tsconfig.json",
"prepublish": "npm run build",
"prepublishOnly": "npm run build",
"npm:publish:template": "npm publish --access public --registry http://localhost:4873",
"release:phase2": "node --experimental-specifier-resolution=node ../../../scripts/releaseV2/phase2-bump-all-packages.mjs"
},
Expand Down

0 comments on commit 51e2744

Please sign in to comment.