mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-20 11:48:35 -05:00
24 lines
587 B
Bash
Executable File
24 lines
587 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"/..
|
|
|
|
yarn build-web-view
|
|
|
|
echo npx @capawesome/cli apps:bundles:create \
|
|
--app-id 969bc540-8077-492f-8403-b554bee5de50 \
|
|
--channel default \
|
|
--commitMessage "$(git log -1 --pretty=format:"%s")" \
|
|
--commitRef $commitRef \
|
|
--commitSha $commitSha \
|
|
--path web/out
|
|
|
|
npx @capawesome/cli apps:bundles:create \
|
|
--app-id 969bc540-8077-492f-8403-b554bee5de50 \
|
|
--channel default \
|
|
--commitMessage "$(git log -1 --pretty=format:"%s")" \
|
|
--commitRef $commitRef \
|
|
--commitSha $commitSha \
|
|
--path web/out
|