Skip to content

Commit cfe1424

Browse files
authored
Merge pull request #16 from hs-2171098-hyunjinchoi/fix/github-actions-build-error
fix: 크롬 익스텐션 업로더 실행 경로 수정
2 parents 5c27b79 + faa70c6 commit cfe1424

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Build project
2323
run: npm run build
2424

25-
# dist/ 폴더 및 파일 확인(디버깅용)
25+
# 압축 전에 dist/ 폴더 구조 확인(디버깅용)
2626
- name: List dist directory contents
2727
run: ls -al dist/
2828

@@ -36,6 +36,10 @@ jobs:
3636
- name: Build extension
3737
run: cd dist && zip -r ../my-extension.zip .
3838

39+
# 압축된 파일 내부 구조 확인(디버깅용)
40+
- name: List contents of my-extension.zip
41+
run: unzip -l my-extension.zip
42+
3943
- name: Upload and publish to Chrome Web Store
4044
env:
4145
EXTENSION_ID: ${{ secrets.EXTENSION_ID }}
@@ -50,4 +54,5 @@ jobs:
5054
"refreshToken": "'"$REFRESH_TOKEN"'"
5155
}' > chrome-webstore-auth.json
5256
57+
cd dist
5358
chrome-webstore-upload upload --source my-extension.zip && chrome-webstore-upload publish

0 commit comments

Comments
 (0)