We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11f1410 commit d11c135Copy full SHA for d11c135
.github/workflows/serverless-workflow.yml
@@ -19,6 +19,9 @@ jobs:
19
node-version: 16
20
- run: npm install
21
- run: npm run build
22
+ - run: npm run sls:package
23
+ ## list all files and folders
24
+ - run: ls -la
25
- run: npm run sls:deploy
26
env:
27
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
serverless.yml
@@ -35,6 +35,9 @@ functions:
35
- http:
36
method: ANY
37
path: '{proxy+}'
38
+ environment:
39
+ FFMPEG_PATH: path/to/ffmpeg-binary
40
+ FFPROBE_PATH: path/to/ffprobe-binary
41
42
# layers:
43
# ffmpeg:
0 commit comments