Skip to content

Commit

Permalink
chroe: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ynahmany committed Nov 28, 2024
1 parent 4b7a84e commit 740aee7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion dist/post.js

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

1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/post.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import * as core from '@actions/core'
import * as exec from '@actions/exec'


interface PostState {
or8n?: boolean
key?: string
Expand Down Expand Up @@ -38,7 +37,8 @@ async function run(): Promise<void> {
const options: string[] = [
`--preset last-run`,
`--matrix-index ${state.matrixIndex}`,
`--matrix-total ${state.matrixTotal}`
`--matrix-total ${state.matrixTotal}`,
`--continue`
]

if (state.key) {
Expand Down

0 comments on commit 740aee7

Please sign in to comment.