Skip to content

Commit

Permalink
ci: It was a folder, ffs
Browse files Browse the repository at this point in the history
  • Loading branch information
davesnx committed Nov 30, 2020
1 parent 1e79206 commit 807218f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 13 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: actions/upload-artifact@master
with:
name: index.js
name: bundled
path: _build/default/js/Js.bc.js

publish:
Expand All @@ -136,14 +136,8 @@ jobs:
if: ${{ success() }}
uses: actions/download-artifact@master
with:
name: index.js
path: _release/index.js

- name: Generate NPM package and release
run: |
ls _release;
echo "---";
ls;
name: bundled
path: _release/bundled

- name: Download linux artifacts
if: ${{ success() }}
Expand Down
2 changes: 1 addition & 1 deletion bin/Info.re
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
let version = "0.5.19";
let version = "0.5.20";
let description = "query-json is a faster and simpler re-implementation of jq in Reason Native";

let repo = "https://github.com/davesnx/query-json";
Expand Down
2 changes: 1 addition & 1 deletion esy.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@davesnx/query-json",
"version": "0.5.19",
"version": "0.5.20",
"description": "faster and simpler re-implementation of jq in Reason Native",
"author": "davesnx <[email protected]>",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions scripts/make-npm-release.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ const pkgJson = {
scripts: {
postinstall: 'node postinstall.js',
},
main: 'index.js',
main: 'bundled/Js.bc.js',
bin: 'query-json',
files: [
'platform-windows-x64/',
'platform-linux-x64/',
'platform-darwin-x64/',
'postinstall.js',
'index.js',
'bundled',
'query-json',
'README.md',
],
Expand Down

0 comments on commit 807218f

Please sign in to comment.