Skip to content

Commit b28bf10

Browse files
gsrohdelucascosti
andauthored
Update managing-complex-workflows.md (#762)
Co-authored-by: Lucas Costi <[email protected]>
1 parent eaa94cc commit b28bf10

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

content/actions/learn-github-actions/managing-complex-workflows.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,13 @@ This example action demonstrates how to reference an existing secret as an envir
2424
```yaml
2525
jobs:
2626
example-job:
27+
runs-on: ubuntu-latest
2728
steps:
2829
- name: Retrieve secret
2930
env:
3031
super_secret: ${{ secrets.SUPERSECRET }}
3132
run: |
32-
example-command "$SUPER_SECRET"
33+
example-command "$super_secret"
3334
```
3435
{% endraw %}
3536

0 commit comments

Comments
 (0)