We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5c27b79 + faa70c6 commit cfe1424Copy full SHA for cfe1424
1 file changed
.github/workflows/deploy.yml
@@ -22,7 +22,7 @@ jobs:
22
- name: Build project
23
run: npm run build
24
25
- # dist/ 폴더 및 파일 확인(디버깅용)
+ # 압축 전에 dist/ 폴더 구조 확인(디버깅용)
26
- name: List dist directory contents
27
run: ls -al dist/
28
@@ -36,6 +36,10 @@ jobs:
36
- name: Build extension
37
run: cd dist && zip -r ../my-extension.zip .
38
39
+ # 압축된 파일 내부 구조 확인(디버깅용)
40
+ - name: List contents of my-extension.zip
41
+ run: unzip -l my-extension.zip
42
+
43
- name: Upload and publish to Chrome Web Store
44
env:
45
EXTENSION_ID: ${{ secrets.EXTENSION_ID }}
@@ -50,4 +54,5 @@ jobs:
50
54
"refreshToken": "'"$REFRESH_TOKEN"'"
51
55
}' > chrome-webstore-auth.json
52
56
57
+ cd dist
53
58
chrome-webstore-upload upload --source my-extension.zip && chrome-webstore-upload publish
0 commit comments