You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-how-to-github-actions.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ Setting up the environment can be done using one of the publish setup actions.
62
62
|**JavaScript**|`actions/setup-node`|
63
63
|**Python**|`actions/setup-python`|
64
64
65
-
A snippet from the yaml file for:
65
+
The following example is a fragment of the .yaml file for a function app that uses:
66
66
67
67
**JavaScript**
68
68
@@ -122,9 +122,9 @@ A snippet from the yaml file for:
122
122
123
123
This depends on the language and for languages supported by Azure Functions, this section should be the standard build steps of each language.
124
124
125
-
A snippet from the yaml file for:
125
+
The following example is a fragment of the .yaml file for a function app that uses:
126
126
127
-
**JavaScript app**
127
+
**JavaScript**
128
128
129
129
```yaml
130
130
- name: 'Run npm'
@@ -190,7 +190,7 @@ To deploy your code to a function app, you will need to use the `Azure/functions
190
190
|_**slot-name**_ | (Optional) The name of the [deployment slot](functions-deployment-slots.md) you want to deploy to. The slot must already be defined in your function app. |
191
191
192
192
193
-
The following snippet show how to use version 1 of the action
193
+
The following example uses version 1 of the `functions-action`:
194
194
195
195
```yaml
196
196
- name: 'Run Azure Functions Action'
@@ -202,7 +202,7 @@ The following snippet show how to use version 1 of the action
202
202
203
203
## Next steps
204
204
205
-
There are a number of samples available in the [Azure GitHub Actions workflow samples repo](https://github.com/Azure/actions-workflow-samples). You can use these samples a starting point for your workflow.
205
+
To view a complete workflow .yaml, see one of the files in the [Azure GitHub Actions workflow samples repo](https://github.com/Azure/actions-workflow-samples) that have `functionapp` in the name. You can use these samples a starting point for your workflow.
206
206
207
207
> [!div class="nextstepaction"]
208
208
> [Learn more about GitHub Actions](https://help.github.com/en/articles/about-github-actions)
0 commit comments