Skip to content

Commit

Permalink
fix: find the right sha for logging (#14159)
Browse files Browse the repository at this point in the history
  • Loading branch information
paoloricciuti authored and trueadm committed Nov 7, 2024
1 parent 688cee9 commit a1f7ab1
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/pkg.pr.new-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,17 @@ jobs:
}
async function log_publish_info() {
const svelte_package = output.packages.find(p => p.name === 'svelte');
const svelte_sha = svelte_package.url.replace(/^.+@([^@]+)$/, '$1');
console.log('\n' + '='.repeat(50));
console.log('Publish Information');
console.log('='.repeat(50));
console.log('\nPublished Packages:');
console.log(output.packages.map((p) => `${p.name} - pnpm add https://pkg.pr.new/${p.name}@${number}`).join('\n'));
console.log('\nPlayground URL:');
console.log(`\nhttps://svelte.dev/playground?version=commit-${output.sha.substring(0, 7)}`)
console.log(output.packages.map((p) => `${p.name} - pnpm add https://pkg.pr.new/${p.name}@${p.url.replace(/^.+@([^@]+)$/, '$1')}`).join('\n'));
if(svelte_sha){
console.log('\nPlayground URL:');
console.log(`\nhttps://svelte.dev/playground?version=commit-${svelte_sha}`)
}
console.log('\n' + '='.repeat(50));
}
Expand Down

0 comments on commit a1f7ab1

Please sign in to comment.