Skip to content

Commit 26df6dc

Browse files
authored
🔀 Merge pull request #17 from NMSUD/develop
👷 Fix CI
2 parents 399319c + be4abda commit 26df6dc

File tree

6 files changed

+8
-50
lines changed

6 files changed

+8
-50
lines changed

.github/workflows/github-tag-release.yml

Lines changed: 0 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -10,47 +10,7 @@ concurrency:
1010
cancel-in-progress: true
1111

1212
jobs:
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

src/web/components/form/dropdown/dropdown.stories.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import 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';
54
import { UseHopeUIThemeProvider, getFormInputArgTypes } from '../../storybook';
5+
import { FormDropdown } from './dropdown';
66

77
const meta = {
88
title: 'Form/Dropdown',

src/web/components/form/dropdown/platformTypeDropdown.stories.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import 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';
54
import { UseHopeUIThemeProvider, getFormInputArgTypes } from '../../storybook';
5+
import { PlatformTypeDropdown } from './platformTypeDropdown';
66

77
const meta = {
88
title: 'Form/PlatformTypeDropdown',

src/web/components/form/portal/portalCoords.stories.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
import type { Meta, StoryObj } from 'storybook-solidjs';
22

3+
import { CommunityDtoMeta } from '@contracts/dto/forms/meta/communityDto.meta';
34
import { UseHopeUIThemeProvider, getFormInputArgTypes } from '../../storybook';
45
import { PortalCoordInput } from './portalCoords';
5-
import { CommunityDtoMeta } from '@contracts/dto/forms/communityDto';
6-
import { socialIcons } from '@constants/socialIcons';
76

87
const meta = {
98
title: 'Form/PortalCoordsInput',

src/web/components/form/socialLink/social.stories.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import type { Meta, StoryObj } from 'storybook-solidjs';
22

3+
import { socialIcons } from '@constants/socialIcons';
4+
import { CommunityDtoMeta } from '@contracts/dto/forms/meta/communityDto.meta';
35
import { UseHopeUIThemeProvider, getFormInputArgTypes } from '../../storybook';
46
import { FormSocialInput } from './social';
5-
import { CommunityDtoMeta } from '@contracts/dto/forms/communityDto';
6-
import { socialIcons } from '@constants/socialIcons';
77

88
const meta = {
99
title: 'Form/SocialInput',

src/web/components/form/tag/tagInput.stories.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import type { Meta, StoryObj } from 'storybook-solidjs';
22

3+
import { CommunityDtoMeta } from '@contracts/dto/forms/meta/communityDto.meta';
34
import { UseHopeUIThemeProvider, getFormInputArgTypes } from '../../storybook';
4-
import { CommunityDtoMeta } from '@contracts/dto/forms/communityDto';
5-
import { socialIcons } from '@constants/socialIcons';
65
import { FormTagInput } from './tagInput';
76

87
const meta = {

0 commit comments

Comments
 (0)