We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fb590f commit 1d9da89Copy full SHA for 1d9da89
1 file changed
.github/workflows/main.yml
@@ -11,5 +11,13 @@ jobs:
11
with:
12
who-to-greet: "Mona the Octocat"
13
# Use the output from the `hello` step
14
- - name: Get the output time
+ - name: Get the output time from hello
15
run: echo "The time was ${{ steps.hello.outputs.time }}"
16
+ - name: Wait some miliseconds
17
+ id: wait
18
+ uses: hpsantos/typescript-github-action@v1.1
19
+ with:
20
+ miliseconds: 5000
21
+ # Use the output from the `hello` step
22
+ - name: Get the output time from wait
23
+ run: echo "The time was ${{ steps.wait.outputs.time }}"
0 commit comments