Compare commits

...

7 Commits

Author SHA1 Message Date
semantic-release-bot
b94355434b chore(release): 1.2.1 [skip ci]
## [1.2.1](https://github.com/antialias/soroban-abacus-flashcards/compare/v1.2.0...v1.2.1) (2025-09-28)

### Bug Fixes

* update GitHub Pages actions to v4 for better deployment reliability ([be76c23](be76c2355f))
2025-09-28 13:31:06 +00:00
Thomas Hallock
be76c2355f fix: update GitHub Pages actions to v4 for better deployment reliability
- Update actions/upload-pages-artifact from v3 to v4
- Update actions/deploy-pages from v3 to v4
- This should resolve the deployment metadata lookup issue
2025-09-28 08:30:10 -05:00
semantic-release-bot
a33ac58b1f chore(release): 1.2.0 [skip ci]
# [1.2.0](https://github.com/antialias/soroban-abacus-flashcards/compare/v1.1.3...v1.2.0) (2025-09-28)

### Features

* trigger storybook deployment after enabling GitHub Pages ([64dc94e](64dc94e91e))
2025-09-28 13:28:42 +00:00
Thomas Hallock
64dc94e91e feat: trigger storybook deployment after enabling GitHub Pages
GitHub Pages has been configured to use GitHub Actions workflow for deployment.
2025-09-28 08:27:46 -05:00
semantic-release-bot
193df4327f chore(release): 1.1.3 [skip ci]
## [1.1.3](https://github.com/antialias/soroban-abacus-flashcards/compare/v1.1.2...v1.1.3) (2025-09-28)

### Bug Fixes

* add cssgen step to generate styles.css for Storybook ([26077de](26077de78b))
2025-09-28 13:25:06 +00:00
Thomas Hallock
26077de78b fix: add cssgen step to generate styles.css for Storybook
- Add 'npx @pandacss/dev cssgen' after panda codegen to generate the consolidated styles.css file
- The styles.css file is required by Storybook preview.ts but was not being generated by panda codegen alone
- Added error handling to allow CSS generation to continue despite warnings
2025-09-28 08:24:12 -05:00
Thomas Hallock
ccca3d3415 debug: add debugging output to storybook deployment workflow
- Add file listing for styled-system directory after panda codegen
- Add debugging output before storybook build to check for styles.css file
- This will help diagnose why storybook can't find the CSS files
2025-09-28 08:19:15 -05:00
3 changed files with 39 additions and 5 deletions

View File

@@ -56,14 +56,27 @@ jobs:
- name: Generate Panda CSS
working-directory: apps/web
run: pnpm panda codegen
run: |
pnpm panda codegen
npx @pandacss/dev cssgen || echo "CSS generation had warnings but continued"
ls -la styled-system/
echo "Generated CSS files:"
ls -la styled-system/*.css || echo "No CSS files found"
- name: Build abacus-react package
run: pnpm --filter @soroban/abacus-react build
- name: Build web Storybook
working-directory: apps/web
run: pnpm build-storybook --output-dir ../../storybook-web
run: |
echo "Current directory contents:"
ls -la
echo "Styled-system directory contents:"
ls -la styled-system/ || echo "No styled-system directory found"
echo "Checking for styles.css:"
ls -la styled-system/styles.css || echo "styles.css not found"
echo "Starting Storybook build..."
pnpm build-storybook --output-dir ../../storybook-web
- name: Build abacus-react Storybook
working-directory: packages/abacus-react
@@ -177,11 +190,11 @@ jobs:
- name: Upload artifact
if: github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: ./pages
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/main'
id: deployment
uses: actions/deploy-pages@v3
uses: actions/deploy-pages@v4

View File

@@ -1,3 +1,24 @@
## [1.2.1](https://github.com/antialias/soroban-abacus-flashcards/compare/v1.2.0...v1.2.1) (2025-09-28)
### Bug Fixes
* update GitHub Pages actions to v4 for better deployment reliability ([be76c23](https://github.com/antialias/soroban-abacus-flashcards/commit/be76c2355fbefd924890baad50b6e873a4e435f2))
# [1.2.0](https://github.com/antialias/soroban-abacus-flashcards/compare/v1.1.3...v1.2.0) (2025-09-28)
### Features
* trigger storybook deployment after enabling GitHub Pages ([64dc94e](https://github.com/antialias/soroban-abacus-flashcards/commit/64dc94e91e089fadbdb75fbbf3a6164a2d224ef4))
## [1.1.3](https://github.com/antialias/soroban-abacus-flashcards/compare/v1.1.2...v1.1.3) (2025-09-28)
### Bug Fixes
* add cssgen step to generate styles.css for Storybook ([26077de](https://github.com/antialias/soroban-abacus-flashcards/commit/26077de78bccf8549e1e9a0ac9c08742c61c8d28))
## [1.1.2](https://github.com/antialias/soroban-abacus-flashcards/compare/v1.1.1...v1.1.2) (2025-09-28)

View File

@@ -1,6 +1,6 @@
{
"name": "soroban-monorepo",
"version": "1.1.2",
"version": "1.2.1",
"private": true,
"description": "Beautiful Soroban Flashcard Generator - Monorepo",
"workspaces": [