1
0
mirror of https://gitlab.com/ceda_ei/google-meet-captions-regex synced 2026-02-07 17:50:08 +01:00
Files
google-meet-captions-regex/build.sh

12 lines
342 B
Bash
Raw Normal View History

2020-09-15 18:32:12 +05:30
#!/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 12:42:42 +05:30
zip -r "web-ext-artifacts/$FILENAME" LICENSE gmcr.js manifest.json background.js popup/build/ icons/
2020-09-15 18:32:12 +05:30
zip -r "web-ext-artifacts/source-$FILENAME" $(git ls-files)