Skip to content

Commit

Permalink
Add github action for automated submission
Browse files Browse the repository at this point in the history
  • Loading branch information
louisgv committed Feb 24, 2022
1 parent c893a54 commit 04f646c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/workflows/submit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "submit"
on:
workflow_dispatch:

jobs:
submit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Build package
run: npm run build
- name: Browser Plugin Publish
uses: plasmo-corp/bpp@v1
with:
archive: "web-ext-artifacts/tweak_new_twitter-{version}.zip"
keys: ${{ secrets.SUBMIT_KEYS }}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ locales/html/*.html
locales/js/*.js
locales/locales.js
node_modules/
web-ext-artifacts/
web-ext-artifacts/
keys.json

0 comments on commit 04f646c

Please sign in to comment.