Skip to content

Commit

Permalink
feat: add additional steps to workflow_commands.yml for enhanced func…
Browse files Browse the repository at this point in the history
…tionality
  • Loading branch information
sgotluru committed Jan 11, 2025
1 parent f9cb0a7 commit f7397fb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/workflow_commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,14 @@ jobs:
echo "::group::This is a group"
echo "Hello"
echo "World"
echo "::endgroup::"
echo "::endgroup::"
- name: "step one"
run: |
echo "This is step one"
echo "x=10" >> $GITHUB_ENV
- name: "step two"
run: echo "This is step two"
- name: "step three"
run: |
echo "This is step three"
echo "x=$x"

0 comments on commit f7397fb

Please sign in to comment.