Skip to content

Commit 80f6a68

Browse files
committed
Fix command
1 parent 34988eb commit 80f6a68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test-workflow.main.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ workflow(
2525
runsOn = UbuntuLatest,
2626
) {
2727
uses(action = Checkout())
28-
run(command = "Hello world!")
28+
run(command = "echo 'Hello world!'")
2929
}
3030
}

.github/workflows/test-workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
- id: 'step-0'
3232
uses: 'actions/checkout@v4'
3333
- id: 'step-1'
34-
run: 'Hello world!'
34+
run: 'echo ''Hello world!'''

0 commit comments

Comments
 (0)