Skip to content

Commit 2e2593f

Browse files
authored
TASK-10510: Fix deploy by netlify plugin (#799)
Signed-off-by: Doug Koerich <[email protected]>
1 parent cba3454 commit 2e2593f

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup Node.js
2727
uses: actions/setup-node@v2
2828
with:
29-
node-version: '14'
29+
node-version: '16.x'
3030

3131
- name: Cache dependencies
3232
uses: actions/cache@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ _**This is not a required step in contributing to the documentation**_
153153

154154
### Node Version
155155

156-
16.12.0
156+
16.x
157157

158158
### Installation
159159

content/momentum/3/3-push/push-http-request-eval.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function mod:http_request_eval(sess)
3232
DzyjAI8maYIogujSPtq-jSUG0WybCQ0mT1eGOZsgy0"
3333
local request = "{ \"registration_ids\": [ \"" .. reg_id .. "\" ], \"dry_run\": true, »
3434
\"data\": { \"message\": \"Push message to send over GCM\" } }"
35-
local auth_key = "AIzaSyA09R1jflwVV4T79OIuLtTxQyXKFlOVQfs"
35+
local auth_key = "REDACTED"
3636
3737
-- print new json request to paniclog.ec for ref
3838
print ("new json request = ", request)
@@ -69,4 +69,4 @@ You must use require `("msys.httpclnt")` to enable this hook point and to access
6969

7070
After changing HTTP session data, be sure to use the `sess:request_finalize` function.
7171

72-
The [ob_get_current_message](/momentum/3/3-reference/3-reference-lua-ref-msys-delivery-ob-get-current-message) function uses this parameter to return a message. See also [Lua Functions](/momentum/3/3-reference/3-reference-lua-summary-table) for more information about the functions used in [“http_response_eval example”](/momentum/3/3-push/push-http-response-eval#push.http_response_eval.example).
72+
The [ob_get_current_message](/momentum/3/3-reference/3-reference-lua-ref-msys-delivery-ob-get-current-message) function uses this parameter to return a message. See also [Lua Functions](/momentum/3/3-reference/3-reference-lua-summary-table) for more information about the functions used in [“http_response_eval example”](/momentum/3/3-push/push-http-response-eval#push.http_response_eval.example).

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "support-docs",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"private": true,
55
"engines": {
6-
"node": "=16.12.0"
6+
"node": "^16"
77
},
88
"scripts": {
99
"predev": "npm run build:images",

0 commit comments

Comments
 (0)