From af3515ca49ef2c6b8e586e42a8fb4fae5973fb10 Mon Sep 17 00:00:00 2001 From: Stefan Aleksic Date: Tue, 22 Feb 2022 18:53:41 +0000 Subject: [PATCH] Add deploy workflow --- .github/workflows/deploy.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000000..98f59d0f6f --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,18 @@ +name: "Submit to Web Stores" +on: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2.1.2 + - name: Install dependencies + run: npm ci + - name: Build package + run: npm run build + - name: Browser Plugin Publish + uses: plasmo-corp/bpp@v1 + with: + keys: ${{ secrets.SUBMIT_KEYS }}