Skip to content

Commit d1008e3

Browse files
committed
Adding github action for automated submission
1 parent 38fb852 commit d1008e3

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/workflows/submit.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: "submit"
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
submit:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- run: yarn install
11+
- run: yarn build
12+
- name: Browser Plugin Publish
13+
uses: plasmo-corp/bpp@v1
14+
with:
15+
keys: ${{ secrets.SUBMIT_KEYS }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ builds
66
build
77
*.zip
88
.eslintcache
9+
keys.json

0 commit comments

Comments
 (0)