Skip to content

Commit 039df40

Browse files
Including ffmpeg/ffprobe statics
1 parent 07e75cc commit 039df40

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/prebuild.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: node ./install_ffmpeg.js
3333

3434
- name: prebuild for Linux (x64)
35-
run: npx prebuild --runtime napi --arch x64 --include-regex '(\.node)$' --upload ${{ secrets.GITHUB_TOKEN }}
35+
run: npx prebuild --runtime napi --arch x64 --include-regex '(\.node|\.dylib|ffmpeg|ffprobe)$' --upload ${{ secrets.GITHUB_TOKEN }}
3636

3737
windows-package:
3838
permissions:
@@ -89,10 +89,10 @@ jobs:
8989
run: node ./install_ffmpeg.js --arch arm64
9090

9191
- name: prebuild Release for macOS (x64)
92-
run: npx prebuild --runtime napi --arch x64 --include-regex '(\.node|\.dylib)$' --verbose --upload ${{ secrets.GITHUB_TOKEN }}
92+
run: npx prebuild --runtime napi --arch x64 --include-regex '(\.node|\.dylib|ffmpeg|ffprobe)$' --verbose --upload ${{ secrets.GITHUB_TOKEN }}
9393

9494
- name: clean build directory for cross-compiling
9595
run: rm ./build/Release/*.dylib || true
9696

9797
- name: prebuild Release for macOS (arm64)
98-
run: npx prebuild --runtime napi --arch arm64 --include-regex '(\.node|\.dylib)$' --verbose --upload ${{ secrets.GITHUB_TOKEN }}
98+
run: npx prebuild --runtime napi --arch arm64 --include-regex '(\.node|\.dylib|ffmpeg|ffprobe)$' --verbose --upload ${{ secrets.GITHUB_TOKEN }}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "beamcoder-prebuild",
3-
"version": "0.7.1-rc.12",
3+
"version": "0.7.1-rc.14",
44
"description": "Node.js native bindings to FFmpeg.",
55
"main": "index.js",
66
"types": "index.d.ts",
@@ -54,13 +54,13 @@
5454
"bindings": "^1.5.0",
5555
"prebuild-install": "^6.0.0",
5656
"segfault-handler": "^1.3.0",
57-
"ffmpeg-ffprobe-static": "^6.1.1-rc.5"
5857
},
5958
"devDependencies": {
6059
"eslint": "^8.9.0",
6160
"node-gyp": "^9.4.1",
6261
"patch-package": "^6.2.2",
6362
"prebuild": "^12.1.0",
63+
"ffmpeg-ffprobe-static": "^6.1.1-rc.5",
6464
"tape": "^5.5.2"
6565
},
6666
"overrides": {

0 commit comments

Comments
 (0)