Skip to content

Commit

Permalink
fix(ci): skip dynamic @humanitec/backstage-plugin-common
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneswuerbach committed Jun 18, 2024
1 parent d0a3fd9 commit d42ca09
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/upload-dynamic-plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ if (!publishedPackagesJSON) {
const publishedPackages = JSON.parse(publishedPackagesJSON);

for (const package of publishedPackages) {
if (package.name === '@humanitec/backstage-plugin-common') {
console.log(`Skipping package: ${package.name} (dependencies are shipped with the main packages)`);
continue;
}

package.name += '-dynamic'
console.log(`Publishing package: ${package.name}@${package.version}`);

Expand Down

0 comments on commit d42ca09

Please sign in to comment.