Skip to content

Commit 8bc382a

Browse files
committed
Fix workflow's build/deploy paths
1 parent 10590a0 commit 8bc382a

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/release_javascript.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ jobs:
1717
node-version: '20.x'
1818
registry-url: 'https://registry.npmjs.org'
1919

20+
- name: fix .npmrc location
21+
run: |
22+
- cp .npmrc cratedb_sqlparse_js
23+
2024
- name: Set up Python
2125
uses: actions/setup-python@v5
2226
with:

.github/workflows/release_python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ jobs:
4242
- name: Publish package distributions to PyPI
4343
uses: pypa/gh-action-pypi-publish@release/v1
4444
with:
45-
packages-dir: 'cratedb_sqlparse_py'
45+
packages-dir: 'cratedb_sqlparse_py/dist'

0 commit comments

Comments
 (0)