From 740aee739dbf37be15a0c92345f603b216bd4b3d Mon Sep 17 00:00:00 2001 From: Yohay Nahmany Date: Thu, 28 Nov 2024 20:21:37 +0100 Subject: [PATCH] chroe: fix --- dist/post.js | 3 ++- src/index.ts | 1 - src/post.ts | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/post.js b/dist/post.js index 1030324..35dc42b 100644 --- a/dist/post.js +++ b/dist/post.js @@ -26204,7 +26204,8 @@ async function run() { const options = [ `--preset last-run`, `--matrix-index ${state.matrixIndex}`, - `--matrix-total ${state.matrixTotal}` + `--matrix-total ${state.matrixTotal}`, + `--continue` ]; if (state.key) { options.push(`--key ${state.key}`); diff --git a/src/index.ts b/src/index.ts index 7b8d48f..c0b2012 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,7 +2,6 @@ import * as core from '@actions/core' import * as exec from '@actions/exec' import * as path from 'path' - // Define interface for inputs interface ActionInputs { or8n: boolean diff --git a/src/post.ts b/src/post.ts index 001c752..c60840e 100644 --- a/src/post.ts +++ b/src/post.ts @@ -1,7 +1,6 @@ import * as core from '@actions/core' import * as exec from '@actions/exec' - interface PostState { or8n?: boolean key?: string @@ -38,7 +37,8 @@ async function run(): Promise { const options: string[] = [ `--preset last-run`, `--matrix-index ${state.matrixIndex}`, - `--matrix-total ${state.matrixTotal}` + `--matrix-total ${state.matrixTotal}`, + `--continue` ] if (state.key) {