mirror of
https://github.com/gofiber/storage.git
synced 2025-09-27 04:46:08 +08:00
64 lines
2.0 KiB
Bash
Executable File
64 lines
2.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Some env variables
|
|
BRANCH="main"
|
|
REPO_URL="github.com/gofiber/docs.git"
|
|
AUTHOR_EMAIL="github-actions[bot]@users.noreply.github.com"
|
|
AUTHOR_USERNAME="github-actions[bot]"
|
|
VERSION_FILE="storage_versions.json"
|
|
REPO_DIR="storage"
|
|
COMMIT_URL="https://github.com/gofiber/storage"
|
|
DOCUSAURUS_COMMAND="npm run docusaurus -- docs:version:storage"
|
|
|
|
# Set commit author
|
|
git config --global user.email "${AUTHOR_EMAIL}"
|
|
git config --global user.name "${AUTHOR_USERNAME}"
|
|
|
|
git clone https://${TOKEN}@${REPO_URL} fiber-docs
|
|
|
|
# Handle push event
|
|
if [ "$EVENT" == "push" ]; then
|
|
latest_commit=$(git rev-parse --short HEAD)
|
|
|
|
for f in $(find . -type f -name "*.md" -not -path "./fiber-docs/*"); do
|
|
log_output=$(git log --oneline "${BRANCH}" HEAD~1..HEAD --name-status -- "${f}")
|
|
|
|
if [[ $log_output != "" || ! -f "fiber-docs/docs/${REPO_DIR}/$f" ]]; then
|
|
mkdir -p fiber-docs/docs/${REPO_DIR}/$(dirname $f)
|
|
cp "${f}" fiber-docs/docs/${REPO_DIR}/$f
|
|
fi
|
|
done
|
|
|
|
# Handle release event
|
|
elif [ "$EVENT" == "release" ]; then
|
|
# Extract package name from tag
|
|
package_name="${TAG_NAME%/*}"
|
|
major_version="${TAG_NAME#*/}"
|
|
major_version="${major_version%%.*}"
|
|
|
|
# Form new version name
|
|
new_version="${package_name}_${major_version}.x.x"
|
|
|
|
cd fiber-docs/ || true
|
|
npm ci
|
|
|
|
# Check if contrib_versions.json exists and modify it if required
|
|
if [[ -f $VERSION_FILE ]]; then
|
|
jq --arg new_version "$new_version" 'del(.[] | select(. == $new_version))' $VERSION_FILE > temp.json && mv temp.json $VERSION_FILE
|
|
jq -S . ${VERSION_FILE} > temp.json && mv temp.json ${VERSION_FILE}
|
|
fi
|
|
|
|
# Run docusaurus versioning command
|
|
$DOCUSAURUS_COMMAND "${new_version}"
|
|
fi
|
|
|
|
# Push changes
|
|
cd fiber-docs/ || true
|
|
git add .
|
|
if [[ $EVENT == "push" ]]; then
|
|
git commit -m "Add docs from ${COMMIT_URL}/commit/${latest_commit}"
|
|
elif [[ $EVENT == "release" ]]; then
|
|
git commit -m "Sync docs for release ${COMMIT_URL}/releases/tag/${TAG_NAME}"
|
|
fi
|
|
git push https://${TOKEN}@${REPO_URL}
|