Skip to content

Commit

Permalink
case-inensitive search for the publishing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mmomtchev committed Oct 20, 2024
1 parent 592d577 commit 13be64a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/publish-packages.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const pkg = {
};
const version = package_json.version;
let workflowPublishId;
const workflowPublishMatch = /publish/;
const workflowPublishMatch = /publish/i;

(async () => {
const branch = (await exec('git branch --show-current')).stdout.trim();
Expand Down

0 comments on commit 13be64a

Please sign in to comment.