Skip to content

Commit eaa94cc

Browse files
authored
Actions: Add missing runs-on (managing complex workflows) (#667)
1 parent 66cb3fc commit eaa94cc

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
@@ -49,6 +49,7 @@ jobs:
4949
- run: ./setup_server.sh
5050
build:
5151
needs: setup
52+
runs-on: ubuntu-latest
5253
steps:
5354
- run: ./build_server.sh
5455
test:
@@ -141,7 +142,7 @@ This example shows how a workflow can use labels to specify the required runner:
141142
```yaml
142143
jobs:
143144
example-job:
144-
runs-on: [self-hosted, linux, x64, gpu]
145+
runs-on: [self-hosted, linux, x64, gpu]
145146
```
146147

147148
For more information, see ["Using labels with self-hosted runners](/actions/hosting-your-own-runners/using-labels-with-self-hosted-runners)."

0 commit comments

Comments
 (0)