Skip to content

Commit

Permalink
Try to convince action that the file exists
Browse files Browse the repository at this point in the history
  • Loading branch information
ianks committed Feb 29, 2024
1 parent 36de8c0 commit 34bb273
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
node-version: '20'

- name: Build artifacts
run: npm install && npm run build
run: npm install && npm run build && stat tree-sitter-sql.wasm

- name: Get the version
id: get_version
Expand All @@ -43,6 +43,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: tree-sitter-sql.wasm
asset_path: ./tree-sitter-sql.wasm
asset_name: tree-sitter-sql.wasm
asset_content_type: application/octet-stream
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ package-lock.json
/src/parser.c
/src/*.json
tree-sitter-sql.wasm
a.out.js
a.out.wasm

0 comments on commit 34bb273

Please sign in to comment.