From 28d21b6ae8f7b0b469f688658b57e1276903db41 Mon Sep 17 00:00:00 2001 From: Stefan Aleksic Date: Sat, 26 Feb 2022 18:29:59 +0000 Subject: [PATCH] Add deploy workflow --- .github/workflows/deploy_to_stores.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/deploy_to_stores.yml diff --git a/.github/workflows/deploy_to_stores.yml b/.github/workflows/deploy_to_stores.yml new file mode 100644 index 0000000..6aabbbf --- /dev/null +++ b/.github/workflows/deploy_to_stores.yml @@ -0,0 +1,16 @@ +on: workflow_dispatch + +name: Submit to Web Stores + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Create zip + run: zip -r extension.zip . -x ".git/*" ".github/*" ".gitignore" ".DS_Store" "README.md" "LICENSE" + - name: Browser Plugin Publish + uses: plasmo-corp/bpp@v1 + with: + artifact: ./extension.zip + keys: ${{ secrets.SUBMIT_KEYS }}