Skip to content

Commit

Permalink
wip: testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgilman committed Sep 4, 2024
1 parent 285cb84 commit bfc82f1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion forge/actions/publish/dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion forge/actions/publish/dist/index.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion forge/actions/publish/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ async function run() {
if (gitTag !== "") {
core.info(`Detected Git tag: ${gitTag}`);

let parts = gitTag.split("/");
const parts = gitTag.split("/");
core.info(`Detected Git tag parts: ${parts} Length: ${parts.length}`);
if (parts.lenth > 1) {
const path = parts.slice(0, -1).join("/");
const tag = parts[parts.length - 1];
Expand Down

0 comments on commit bfc82f1

Please sign in to comment.