Skip to content

Commit

Permalink
👷🚜👣
Browse files Browse the repository at this point in the history
  • Loading branch information
cowboyd committed Nov 26, 2024
1 parent 9337533 commit 49131c0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions www/tasks/publish-matrix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ await main(function* () {
// ergo we publish
if (output.join("").trim() === "") {
include.push({
exists: true,
workspace: pkgmeta.workspace,
tagname,
name: pkg.name,
Expand All @@ -41,7 +40,10 @@ await main(function* () {
let exists = include.length > 0;

if (!exists) {
include.push({ exists: false });
include.push({
workspace: "nothing",
version: "0.0.0"
});
}

let outputValue = [
Expand Down

0 comments on commit 49131c0

Please sign in to comment.