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 860183b commit 75c9438Copy full SHA for 75c9438
.github/workflows/release.yml
@@ -51,10 +51,9 @@ jobs:
51
- name: Upload binaries
52
uses: actions/upload-artifact@v4
53
with:
54
- path: ./**/parser.so
+ path: ${{inputs.directory}}/**/parser.so
55
name: prebuild-${{runner.os}}-${{runner.arch}}
56
retention-days: 2
57
- working-directory: ${{inputs.directory}}
58
59
package:
60
name: Publish NodeJS package
@@ -77,10 +76,9 @@ jobs:
77
76
- name: Download binaries
78
uses: actions/download-artifact@v4
79
80
- path: prebuilds
+ path: ${{inputs.directory}}/prebuilds
81
pattern: prebuild-*
82
# merge-multiple: true
83
84
- name: Move sources
85
run: pnpm source
86
working-directory: ${{inputs.directory}}
0 commit comments