Skip to content

Commit 8a17041

Browse files
authored
ci: Fix npm push workflow (#2569)
* ci: Fix NPM Push with missing working-directory Signed-off-by: Danny Chiao <danny@tecton.ai> * bump files Signed-off-by: Danny Chiao <danny@tecton.ai> * bump files Signed-off-by: Danny Chiao <danny@tecton.ai>
1 parent c8fcc35 commit 8a17041

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/publish.yml

+1
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@ jobs:
294294
working-directory: ./ui
295295
run: yarn build:lib
296296
- name: Publish UI package
297+
working-directory: ./ui
297298
run: npm publish
298299
env:
299300
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

infra/scripts/release/bump_file_versions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55

66
USAGE = f"Usage: python {sys.argv[0]} [--help] | current_semver_version new_semver_version]"
7-
VERSIONS_TO_BUMP = 27
7+
VERSIONS_TO_BUMP = 28
88

99

1010
def main() -> None:

ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@feast-dev/feast-ui",
3-
"version": "0.19.0",
3+
"version": "0.20.0",
44
"private": false,
55
"files": [
66
"dist"

0 commit comments

Comments
 (0)