Skip to content

Commit e7c81c8

Browse files
committed
chore: debug ci
1 parent 0431f6e commit e7c81c8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/bundle.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
id: bundle
3535
uses: actions/github-script@v6
3636
with:
37+
debug: ${{secrets.ACTIONS_RUNNER_DEBUG}}
3738
github-token: ${{secrets.GITHUB_TOKEN}}
3839
script: |
3940
const bundle = require('./scripts/bundle-release.cjs');

scripts/bundle-release.cjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,11 @@ module.exports = async function bundle({ core, exec, github, glob, tags = '', wo
9292
core.info(`Checking out ${tag}`);
9393
await execCommand(exec, `git checkout ${tag}`);
9494

95-
core.info('Installing dependencies');
95+
core.info(`Installing dependencies for ${tag}`);
9696
await execCommand(exec, `npm ci --prefer-offline`);
97-
core.info('Building tools');
97+
core.info(`Building tools for ${tag}`);
9898
await execCommand(exec, `npm run build -w @patternfly/pfe-tools -w @patternfly/pfe-styles`);
99-
core.info('Bundling Packages');
99+
core.info(`Bundling Packages for ${tag}`);
100100
const bundleFileName = await getBundle({ core, github, glob, workspace });
101101

102102
// Delete any existing asset with that name

0 commit comments

Comments
 (0)