We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34988eb commit 80f6a68Copy full SHA for 80f6a68
.github/workflows/test-workflow.main.kts
@@ -25,6 +25,6 @@ workflow(
25
runsOn = UbuntuLatest,
26
) {
27
uses(action = Checkout())
28
- run(command = "Hello world!")
+ run(command = "echo 'Hello world!'")
29
}
30
.github/workflows/test-workflow.yaml
@@ -31,4 +31,4 @@ jobs:
31
- id: 'step-0'
32
uses: 'actions/checkout@v4'
33
- id: 'step-1'
34
- run: 'Hello world!'
+ run: 'echo ''Hello world!'''
0 commit comments