You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix Chrome Web Store deployment to use CRX instead of ZIP
- Update deploy-chrome.js to use CRX file path
- Modify workflow to generate CRX packages for Chrome deployment
- Update all environment variables from ZIP to CRX
- Fix deployment verification and path setting
- Bump version to 1.6.3 for CRX deployment test
echo "β CRX file not found - Chrome Web Store deployment will fail"
225
+
echo "Available CRX files:"
226
+
find . -name "*.crx" -type f -exec ls -la {} \;
227
+
exit 1
226
228
fi
227
229
228
230
echo "β Artifacts built with version ${VERSION}"
229
231
echo "π Available artifacts:"
230
-
ls -la blog-link-analyzer-${VERSION}.zip blog-link-analyzer-firefox-${VERSION}.xpi 2>/dev/null || echo "Some artifacts may be missing"
232
+
ls -la blog-link-analyzer-${VERSION}.zip blog-link-analyzer-${VERSION}.crx blog-link-analyzer-firefox-${VERSION}.xpi 2>/dev/null || echo "Some artifacts may be missing"
231
233
232
-
# Ensure ZIP file exists for Chrome deployment
233
-
if [ ! -f "blog-link-analyzer-${VERSION}.zip" ]; then
234
-
echo "β Chrome ZIP file not found - deployment cannot continue"
234
+
# Ensure CRX file exists for Chrome deployment
235
+
if [ ! -f "blog-link-analyzer-${VERSION}.crx" ]; then
236
+
echo "β Chrome CRX file not found - deployment cannot continue"
0 commit comments