Skip to content

Commit

Permalink
fix: fix release (#433)
Browse files Browse the repository at this point in the history
* fix: fix release

* fix import

* fix ci
  • Loading branch information
kuzmadom authored Feb 27, 2024
1 parent ff9ce8a commit 4382381
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI

on:
push:
branches: [main]
branches: [main, v4-2]
pull_request:
branches: [main]
branches: [main, v4-2]

jobs:
verify_files:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release-v4-2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ jobs:
npm-token: ${{ secrets.GRAVITY_UI_BOT_NPM_TOKEN }}
node-version: 18
default-branch: v4-2
npm-dist-tag: untagged
npm-dist-tag: untagged
skip-github-release: true
skip-labeling: true
1 change: 1 addition & 0 deletions src/plugins/d3/__stories__/bar-x/Playground.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import {action} from '@storybook/addon-actions';
import {StoryObj} from '@storybook/react';
import {Button} from '@gravity-ui/uikit';
import {settings} from '../../../../libs';
Expand Down
1 change: 1 addition & 0 deletions src/plugins/d3/__stories__/bar-y/Playground.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import {action} from '@storybook/addon-actions';
import {StoryObj} from '@storybook/react';
import {Button} from '@gravity-ui/uikit';
import {settings} from '../../../../libs';
Expand Down
1 change: 1 addition & 0 deletions src/plugins/d3/__stories__/line/Playground.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import {action} from '@storybook/addon-actions';
import {StoryObj} from '@storybook/react';
import {Button} from '@gravity-ui/uikit';
import {settings} from '../../../../libs';
Expand Down
1 change: 1 addition & 0 deletions src/plugins/d3/__stories__/pie/Playground.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import {action} from '@storybook/addon-actions';
import {StoryObj} from '@storybook/react';
import {Button} from '@gravity-ui/uikit';
import {settings} from '../../../../libs';
Expand Down
3 changes: 2 additions & 1 deletion src/plugins/d3/__stories__/treemap/Playground.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import React from 'react';
import {action} from '@storybook/addon-actions';
import {StoryObj} from '@storybook/react';
import {Button} from '@gravity-ui/uikit';
import {settings} from '../../../../libs';
import {ChartKit} from '../../../../components/ChartKit';
import type {ChartKitRef} from '../../../../types';
import type {ChartKitRef, TreemapSeries} from '../../../../types';
import type {ChartKitWidgetData} from '../../../../types/widget-data';
import {D3Plugin} from '../..';

Expand Down

0 comments on commit 4382381

Please sign in to comment.