Skip to content

Commit 0b7a287

Browse files
committed
build(deploy.yml): set node-version to 16
1 parent 5a0b8e0 commit 0b7a287

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,26 @@
11
name: Deploy
2-
on:
2+
"on":
33
push:
44
branches:
55
- main
66
workflow_dispatch: {}
7-
87
jobs:
98
deploy:
109
runs-on: ubuntu-latest
1110
steps:
1211
- uses: actions/checkout@v2
1312
- uses: actions/setup-node@v2
1413
with:
15-
node-version: 12
14+
node-version: 16
1615
cache: npm
1716
- run: npm ci
1817
- uses: azure/login@v1
1918
with:
20-
# probot/example-azure-function credentials provided by @gr2m
2119
creds: ${{ secrets.AZURE_CREDENTIALS }}
22-
- name: "Run Azure Functions Action"
20+
- name: Run Azure Functions Action
2321
uses: Azure/functions-action@v1
2422
id: fa
2523
with:
26-
app-name: "probot-example"
27-
package: "."
28-
# probot/example-azure-function credentials provided by @gr2m
24+
app-name: probot-example
25+
package: .
2926
publish-profile: ${{ secrets.AZURE_FUNCTION_APP_PUBLISH_PROFILE }}

0 commit comments

Comments
 (0)