Skip to content

Commit

Permalink
path
Browse files Browse the repository at this point in the history
  • Loading branch information
penalosa committed Oct 3, 2024
1 parent fd031f6 commit 85aebb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/prereleases/2-build-pack-upload.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ async function uploadPackageArtifact(pkg, artifactPath) {

for (const pkg of pkgs) {
if (pkg.json["workers-sdk"].type === "extension") {
const path = path.join(
const filePath = path.join(
pkg.path,
`${pkg.json.name}-${pkg.json.version}.vsix`
);
await uploadPackageArtifact(pkg, path);
await uploadPackageArtifact(pkg, filePath);
} else {
const tarballPath = packPackage(pkg);
await uploadPackageArtifact(pkg, tarballPath);
Expand Down

0 comments on commit 85aebb2

Please sign in to comment.