Skip to content

Commit 503ca3f

Browse files
committed
fix(browser): downgrade tailwindcss to v3.0
1 parent d6ebf0f commit 503ca3f

File tree

3 files changed

+70
-25
lines changed

3 files changed

+70
-25
lines changed

.github/workflows/browser.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Submit to Web Store"
1+
name: "browser"
22
on:
33
push:
44
branches:
@@ -8,15 +8,15 @@ on:
88
- "packages/server/**"
99

1010
jobs:
11-
build:
11+
deploy:
1212
runs-on: ubuntu-latest
1313
environment: deploy-browser
1414
defaults:
1515
run:
1616
working-directory: ./apps/browser
1717
env:
18-
CRX_PUBLIC_KEY: ${{ secrets.CRX_PUBLIC_KEY }}
1918
CLERK_FRONTEND_API: ${{ secrets.CLERK_FRONTEND_API }}
19+
PLASMO_PUBLIC_CLERK_SYNC_HOST: ${{ secrets.PLASMO_PUBLIC_CLERK_SYNC_HOST }}
2020

2121
steps:
2222
- name: 💾 Checkout code
@@ -34,8 +34,12 @@ jobs:
3434
- name: 🛠️ Package the extension into a zip artifact
3535
run: bun run package
3636

37-
- name: 🚀 Browser Platform Publish
38-
uses: PlasmoHQ/bpp@v3
37+
- name: 🚀 Upload to Chrome Web Store
38+
uses: mobilefirstllc/cws-publish@latest
3939
with:
40-
keys: ${{ secrets.SUBMIT_KEYS }}
41-
artifact: ./apps/browser/build/chrome-mv3-prod.zip
40+
action: "upload" # one of: upload, publish, testers
41+
client_id: ${{ secrets.CLIENT }}
42+
client_secret: ${{ secrets.SECRET }}
43+
refresh_token: ${{ secrets.TOKEN }}
44+
extension_id: "bbhdnidgcmmpihfimomooiaojnaeedlj"
45+
zip_file: "./apps/browser/build/chrome-mv3-prod.zip"

apps/browser/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"plasmo": "0.90.5",
1818
"react": "19.2.0",
1919
"react-dom": "19.2.0",
20-
"tailwindcss": "4.1.14"
20+
"tailwindcss": "3.4.1"
2121
},
2222
"devDependencies": {
2323
"@types/chrome": "0.1.24",
@@ -28,7 +28,6 @@
2828
"typescript": "5.9.3"
2929
},
3030
"manifest": {
31-
"key": "$CRX_PUBLIC_KEY",
3231
"permissions": [
3332
"cookies",
3433
"storage"

0 commit comments

Comments
 (0)