mirror of
https://github.com/strapi/strapi.git
synced 2025-06-27 00:41:25 +00:00
35 lines
878 B
Bash
Executable File
35 lines
878 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Force start from root folder
|
|
cd "$(dirname "$0")/.."
|
|
|
|
set -e
|
|
|
|
version=$VERSION
|
|
distTag=$DIST_TAG
|
|
|
|
if [[ -z "$version" ]]; then
|
|
echo "Please enter the version you want to publish"
|
|
read -r version
|
|
fi
|
|
|
|
if [[ -z "$distTag" ]]; then
|
|
echo "Please enter the dist-tag you want to publish with"
|
|
read -r distTag
|
|
fi
|
|
|
|
# Ensure GitHub token is available
|
|
if [[ -z "$GITHUB_TOKEN" ]]; then
|
|
echo "Error: GITHUB_TOKEN environment variable is not set."
|
|
exit 1
|
|
fi
|
|
|
|
# Configure Git
|
|
git config --global user.name "${GITHUB_ACTOR}"
|
|
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
|
|
|
|
# publish packages
|
|
./node_modules/.bin/nx run-many --target=clean --nx-ignore-cycles
|
|
./node_modules/.bin/nx run-many --target=build --nx-ignore-cycles --skip-nx-cache
|
|
GITHUB_TOKEN=$GITHUB_TOKEN yarn release --version "$version" --tag "$distTag" --dry-run false "$@"
|