Skip to content

Commit 42e9d32

Browse files
committed
Allow workflow_dispatch for actions
1 parent 66af3a8 commit 42e9d32

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/linux-daily-check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
tags:
66
- "v*"
7+
workflow_dispatch:
78

89
jobs:
910
update:

.github/workflows/macos-daily-check.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
tags:
66
- "v*"
7+
workflow_dispatch:
78

89
jobs:
910
update:
@@ -62,7 +63,7 @@ jobs:
6263
run: |
6364
cd node/out/Release
6465
ln libnode.* libnode.dylib
65-
tar -cJf "libnode-${{ matrix.arch }}-linux.tar.xz" libnode.* node
66+
tar -cJf "libnode-${{ matrix.arch }}-macos.tar.xz" libnode.* node
6667
6768
- name: Upload binaries to release
6869
uses: svenstaro/upload-release-action@v2

.github/workflows/windows-daily-check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
tags:
66
- "v*"
7+
workflow_dispatch:
78

89
jobs:
910
update:

0 commit comments

Comments
 (0)