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 }}