From c0802d005e3052d2d03fdb32c1001c0c6338825c Mon Sep 17 00:00:00 2001 From: Stefan Aleksic Date: Sat, 26 Feb 2022 14:51:02 +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 00000000..b2d2ec6e --- /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: Build extension + run: cd src; zip -r ../extension.zip .; cd - + - name: Browser Plugin Publish + uses: plasmo-corp/bpp@v1 + with: + artifact: ./extension.zip + keys: ${{ secrets.SUBMIT_KEYS }}