Skip to content

Commit

Permalink
Try to fix build 🦜
Browse files Browse the repository at this point in the history
  • Loading branch information
Yevhenii Hyzyla committed Oct 14, 2023
1 parent c151386 commit ae42297
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/submit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,18 @@ jobs:
run: npm ci
- name: Build the extension
run: npm run build
- name: Package the extension into a zip artifact
run: npm run package
- name: Package Chrome extension into a zip artifact
run: npm run package:chrome
- name: Package Firefox extension into a zip artifact
run: npm run package:firefox
- name: Browser Platform Publish
uses: PlasmoHQ/bpp@v3
with:
keys: ${{ secrets.BPP_KEYS }}
artifact: build/chrome-mv3-prod.zip
- name: Browser Platform Publish
uses: PlasmoHQ/bpp@v3
with:
keys: ${{ secrets.BPP_KEYS }}
artifact: build/firefox-mv3-prod.zip

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"name": "kibana-clicker",
"displayName": "Kibana Clicker",
"version": "0.0.1",
"version": "23.10.15",
"description": "Automation tool for Kibana",
"author": "Yevhenii Hyzyla <[email protected]>",
"homepage": "https://github.com/hyzyla/kibana-clicker",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"build:chrome": "plasmo build --target=chrome-mv3 --zip",
"build:firefox": "plasmo build --target=firefox-mv3 --zip",
"test": "plasmo test"
},
"dependencies": {
Expand Down

0 comments on commit ae42297

Please sign in to comment.