We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d530a19 commit a849167Copy full SHA for a849167
1 file changed
.github/workflows/base.yml
@@ -70,6 +70,15 @@ jobs:
70
# Runs a single command using the runners shell
71
- name: Run a one-line script
72
run: echo Hello, world!
73
+
74
+ - name: Hello world action step
75
+ uses: ../actions/release # Uses an action in the root directory
76
+ id: hello
77
+ with:
78
+ who-to-greet: 'Mona the Octocat'
79
+ # Use the output from the `hello` step
80
+ - name: Get the output time
81
+ run: echo "The time was ${{ steps.hello.outputs.time }}"
82
83
# Runs a set of commands using the runners shell
84
- name: Run a multi-line script
0 commit comments