google-meet-captions-regex/build.sh

12 lines
342 B
Bash
Raw Normal View History

2020-09-15 15:02:12 +02:00
#!/usr/bin/env bash
cd popup
yarn install
yarn build
cd ..
[[ -d web-ext-artifacts ]] || mkdir web-ext-artifacts
FILENAME="$(basename "$PWD")-$(jq -r .version manifest.json).zip"
2020-09-20 09:12:42 +02:00
zip -r "web-ext-artifacts/$FILENAME" LICENSE gmcr.js manifest.json background.js popup/build/ icons/
2020-09-15 15:02:12 +02:00
zip -r "web-ext-artifacts/source-$FILENAME" $(git ls-files)