Skip to content

Commit 4a9739a

Browse files
📝 - Updated Compositite Example on 🏁 - Fixes #11849 (#13318)
1 parent 1b130ff commit 4a9739a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

content/actions/creating-actions/creating-a-composite-action.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ Before you begin, you'll create a repository on {% ifversion ghae %}{% data vari
8484
- id: random-number-generator
8585
run: echo "::set-output name=random-id::$(echo $RANDOM)"
8686
shell: bash
87-
- run: ${{ github.action_path }}/goodbye.sh
87+
- run: echo "${{ github.action_path }}" >> $GITHUB_PATH
88+
shell: bash
89+
- run: goodbye.sh
8890
shell: bash
8991
```
9092
{% endraw %}

0 commit comments

Comments
 (0)