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 3aa4112 commit 38f3fba
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions 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.

6 changes: 3 additions & 3 deletions forge/actions/publish/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ async function run() {
);
return;
} else if (
blueprint?.global?.registry === undefined ||
blueprint?.global?.registry.length === 0
blueprint?.global?.ci?.registries === undefined ||
blueprint?.global?.ci?.registries.length === 0
) {
core.warning(
`The repository does not have any registries defined. Skipping publish`,
Expand All @@ -36,7 +36,7 @@ async function run() {
}

const container = blueprint.project.container;
const registries = blueprint.global.registry;
const registries = blueprint.global.ci.registries;
const tag = getTag(blueprint.global.ci.tagging.strategy);

for (const registry of registries) {
Expand Down

0 comments on commit 38f3fba

Please sign in to comment.