1
0
mirror of synced 2025-12-30 12:02:01 -05:00

Removed duplicate actions reusable folder

This commit is contained in:
Sophie
2022-02-25 15:51:14 +01:00
parent 87a7257bf4
commit 50c0b2d0b0
196 changed files with 334 additions and 334 deletions

View File

@@ -0,0 +1,19 @@
### Running on a different operating system
The starter workflow configures jobs to run on Linux, using the {% data variables.product.prodname_dotcom %}-hosted `ubuntu-latest` runners. You can change the `runs-on` key to run your jobs on a different operating system. For example, you can use the {% data variables.product.prodname_dotcom %}-hosted Windows runners.
{% raw %}
```yaml
runs-on: windows-latest
```
{% endraw %}
Or, you can run on the {% data variables.product.prodname_dotcom %}-hosted macOS runners.
{% raw %}
```yaml
runs-on: macos-latest
```
{% endraw %}
You can also run jobs in Docker containers, or you can provide a self-hosted runner that runs on your own infrastructure. For more information, see "[Workflow syntax for {% data variables.product.prodname_actions %}](/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#jobsjob_idruns-on)."