mirror of
https://github.com/primer/css.git
synced 2024-11-30 01:04:04 +03:00
13 lines
306 B
Bash
Executable File
13 lines
306 B
Bash
Executable File
#!/bin/bash
|
|
|
|
npx action-status --context="$PUBLISH_STATUS_CONTEXT" --state=pending --description="publishing $version..."
|
|
|
|
# generate the build directory
|
|
npm run dist
|
|
|
|
files=$(git ls-files src | sed -e 's#^src/##' | sed -e 's#/.*$##' | sort -u)
|
|
echo $files > publish-files.txt
|
|
cd src
|
|
cp -rv $files ..
|
|
cd -
|