Skip to content

Commit f7397fb

Browse files
committed
feat: add additional steps to workflow_commands.yml for enhanced functionality
1 parent f9cb0a7 commit f7397fb

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/workflow_commands.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,14 @@ jobs:
1010
echo "::group::This is a group"
1111
echo "Hello"
1212
echo "World"
13-
echo "::endgroup::"
13+
echo "::endgroup::"
14+
- name: "step one"
15+
run: |
16+
echo "This is step one"
17+
echo "x=10" >> $GITHUB_ENV
18+
- name: "step two"
19+
run: echo "This is step two"
20+
- name: "step three"
21+
run: |
22+
echo "This is step three"
23+
echo "x=$x"

0 commit comments

Comments
 (0)