mirror of
https://github.com/primer/css.git
synced 2025-01-07 06:51:03 +03:00
14 lines
247 B
Bash
Executable File
14 lines
247 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
file=publish-files.log
|
|
if [[ -f $file ]]; then
|
|
echo "deleting all files listed in $file..."
|
|
cat $file | xargs rm -rfv
|
|
rm $file
|
|
fi
|
|
|
|
if [[ "$GITHUB_REF" = "refs/heads/master" ]]; then
|
|
npm run publish-storybook
|
|
fi
|