1
0
mirror of https://github.com/yldio/copilot.git synced 2024-09-21 22:03:54 +03:00
copilot/bin/on-changes-publish-ui

17 lines
284 B
Plaintext
Raw Normal View History

2017-01-06 16:47:36 +02:00
#! /usr/bin/env bash
#
# Prelude
#
set -euo pipefail
2017-01-06 17:10:20 +02:00
set -x
# Set internal field seperator to `/` to split up urls
IFS='/'
2017-01-06 16:47:36 +02:00
read -ra ADDR <<< "$CIRCLE_COMPARE_URL"
if [[ "$(git diff --name-only """${ADDR[-1]}""")" == *"ui/"* ]]
then
make -C ui publish | sed '/NPM_TOKEN/d'
fi