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 75cf282 commit e1c6948Copy full SHA for e1c6948
.github/workflows/test.yml
@@ -13,4 +13,11 @@ jobs:
13
node: [4, 6]
14
npm: 2
15
steps:
16
- - uses: actions/checkout@v1
+ - name: Hello world
17
+ uses: actions/hello-world-javascript-action@v1
18
+ with:
19
+ who-to-greet: 'Mona the Octocat'
20
+ id: hello
21
+ # This step prints an output (time) from the previous step's action.
22
+ - name: Echo the greeting's time
23
+ run: echo 'The time was ${{ steps.hello.outputs.time }}.'
0 commit comments