Skip to content

Commit

Permalink
wip: testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgilman committed Sep 10, 2024
1 parent 901257e commit e789ba7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion forge/actions/publish/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30469,7 +30469,7 @@ async function run() {
images["default"] = image;
}

for (const image in images) {
for (const image of Object.values(images)) {
core.info(`Validating image ${image} exists`);
const exists = await imageExists(image);
if (!exists) {
Expand Down
2 changes: 1 addition & 1 deletion forge/actions/publish/dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion forge/actions/publish/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ async function run() {
images["default"] = image;
}

for (const image in images) {
for (const image of Object.values(images)) {
core.info(`Validating image ${image} exists`);
const exists = await imageExists(image);
if (!exists) {
Expand Down
2 changes: 1 addition & 1 deletion forge/actions/run/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/run/dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion forge/actions/run/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ async function run() {
const path = core.getInput("path", { required: true });
const targetArgs = core.getInput("target_args", { required: false });

const args = ["-vv", "run"];
const args = ["-vv", "run", "--ci"];

if (artifact !== "") {
args.push("--artifact", artifact);
Expand Down

0 comments on commit e789ba7

Please sign in to comment.