Skip to content

Commit

Permalink
ci: zip
Browse files Browse the repository at this point in the history
  • Loading branch information
jxom committed Oct 11, 2023
1 parent c4ab6e4 commit d4b3439
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
git push --tags
- name: Zip
run: cd dist && zip -r extension.zip build
run: bun run zip

- name: Get NPM version
id: package-version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: bun run build

- name: Zip
run: cd dist && zip -r extension.zip build
run: bun run zip

- name: Submit to Chrome Web Store
uses: PlasmoHQ/bpp@v3.5.0
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"prepare": "bun run build:ds",
"symbols": "bun scripts/symbols.ts",
"sync": "git submodule init && git submodule update",
"typecheck": "tsc --noEmit"
"typecheck": "tsc --noEmit",
"zip": "web-ext build --source-dir ./dist/build --artifacts-dir ./dist --filename extension.zip"
},
"dependencies": {
"@capsizecss/core": "^3.1.0",
Expand Down

0 comments on commit d4b3439

Please sign in to comment.