File tree Expand file tree Collapse file tree 6 files changed +8
-50
lines changed
Expand file tree Collapse file tree 6 files changed +8
-50
lines changed Original file line number Diff line number Diff line change @@ -10,47 +10,7 @@ concurrency:
1010 cancel-in-progress : true
1111
1212jobs :
13- check-version :
14- name : Version number was bumped
15- runs-on : ubuntu-latest
16- outputs :
17- version-changed : ${{ steps.version-changed.outputs.changed }}
18-
19- permissions :
20- contents : write
21- pull-requests : write
22-
23- steps :
24- - name : Checkout Repo
25- uses : actions/checkout@v4
26-
27- - name : Get New Version
28- run : |
29- new_version=$(npm pkg get version | xargs)
30- echo "NEW=${new_version}" >> $GITHUB_ENV
31-
32- - name : Checkout Repo
33- uses : actions/checkout@v4
34- with :
35- ref : main
36-
37- - name : Get Main Version
38- run : |
39- main_version=$(npm pkg get version | xargs)
40- echo "MAIN=${main_version}" >> $GITHUB_ENV
41-
42- - name : Compare Versions
43- id : version-changed
44- run : |
45- if [[ ${{ env.NEW }} == ${{ env.MAIN }} ]]; then
46- echo "changed=false" >> "$GITHUB_OUTPUT"
47- else
48- echo "changed=true" >> "$GITHUB_OUTPUT"
49- fi
50-
5113 github :
52- needs : check-version
53- if : needs.check-version.outputs.version-changed == 'true'
5414 name : Github Tag and Release
5515 environment : github-pages
5616 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 11import type { Meta , StoryObj } from 'storybook-solidjs' ;
22
3- import { BuilderDtoMeta } from '@contracts/dto/forms/builderDto' ;
4- import { FormDropdown } from './dropdown' ;
3+ import { BuilderDtoMeta } from '@contracts/dto/forms/meta/builderDto.meta' ;
54import { UseHopeUIThemeProvider , getFormInputArgTypes } from '../../storybook' ;
5+ import { FormDropdown } from './dropdown' ;
66
77const meta = {
88 title : 'Form/Dropdown' ,
Original file line number Diff line number Diff line change 11import type { Meta , StoryObj } from 'storybook-solidjs' ;
22
3- import { BuilderDtoMeta } from '@contracts/dto/forms/builderDto' ;
4- import { PlatformTypeDropdown } from './platformTypeDropdown' ;
3+ import { BuilderDtoMeta } from '@contracts/dto/forms/meta/builderDto.meta' ;
54import { UseHopeUIThemeProvider , getFormInputArgTypes } from '../../storybook' ;
5+ import { PlatformTypeDropdown } from './platformTypeDropdown' ;
66
77const meta = {
88 title : 'Form/PlatformTypeDropdown' ,
Original file line number Diff line number Diff line change 11import type { Meta , StoryObj } from 'storybook-solidjs' ;
22
3+ import { CommunityDtoMeta } from '@contracts/dto/forms/meta/communityDto.meta' ;
34import { UseHopeUIThemeProvider , getFormInputArgTypes } from '../../storybook' ;
45import { PortalCoordInput } from './portalCoords' ;
5- import { CommunityDtoMeta } from '@contracts/dto/forms/communityDto' ;
6- import { socialIcons } from '@constants/socialIcons' ;
76
87const meta = {
98 title : 'Form/PortalCoordsInput' ,
Original file line number Diff line number Diff line change 11import type { Meta , StoryObj } from 'storybook-solidjs' ;
22
3+ import { socialIcons } from '@constants/socialIcons' ;
4+ import { CommunityDtoMeta } from '@contracts/dto/forms/meta/communityDto.meta' ;
35import { UseHopeUIThemeProvider , getFormInputArgTypes } from '../../storybook' ;
46import { FormSocialInput } from './social' ;
5- import { CommunityDtoMeta } from '@contracts/dto/forms/communityDto' ;
6- import { socialIcons } from '@constants/socialIcons' ;
77
88const meta = {
99 title : 'Form/SocialInput' ,
Original file line number Diff line number Diff line change 11import type { Meta , StoryObj } from 'storybook-solidjs' ;
22
3+ import { CommunityDtoMeta } from '@contracts/dto/forms/meta/communityDto.meta' ;
34import { UseHopeUIThemeProvider , getFormInputArgTypes } from '../../storybook' ;
4- import { CommunityDtoMeta } from '@contracts/dto/forms/communityDto' ;
5- import { socialIcons } from '@constants/socialIcons' ;
65import { FormTagInput } from './tagInput' ;
76
87const meta = {
You can’t perform that action at this time.
0 commit comments