Skip to content

Commit

Permalink
better logs
Browse files Browse the repository at this point in the history
  • Loading branch information
CNimmo16 committed Jan 5, 2025
1 parent a41b463 commit e432cdf
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,17 @@ jobs:
with:
script: |
const publishedPackages = JSON.parse(process.env.PUBLISHED_PACKAGES);
console.log('publishedPackages', publishedPackages);
const clientPackage = publishedPackages.find((pkg) => pkg.name === '@quory/client');
console.log('clientPackage', clientPackage);
if (!clientPackage) {
return {
publishedClientVersion: null
};
}
console.info(`Found published client version: ${clientPackage.version}`);
return {
publishedClientVersion: clientPackage.version
};
electron:
needs: determine-client-version

Expand Down

0 comments on commit e432cdf

Please sign in to comment.