mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
Fix deploy script for beta deployment
Since the beta/ directory already exists, we can't copy the complete master dir
This commit is contained in:
parent
bb67423577
commit
ef896faa01
19
.github/deploy.sh
vendored
19
.github/deploy.sh
vendored
@ -19,7 +19,7 @@ fi
|
||||
|
||||
if [[ $BETA = "true" ]]; then
|
||||
echo "Update documentation for the beta release"
|
||||
cp -r out/master out/beta
|
||||
cp -r out/master/* out/beta
|
||||
fi
|
||||
|
||||
# Generate version index that is shown as root index page
|
||||
@ -33,12 +33,11 @@ cd out
|
||||
git config user.name "GHA CI"
|
||||
git config user.email "gha@ci.invalid"
|
||||
|
||||
if git diff --exit-code --quiet; then
|
||||
echo "No changes to the output on this push; exiting."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [[ -n $TAG_NAME ]]; then
|
||||
if git diff --exit-code --quiet -- $TAG_NAME/; then
|
||||
echo "No changes to the output on this push; exiting."
|
||||
exit 0
|
||||
fi
|
||||
# Add the new dir
|
||||
git add "$TAG_NAME"
|
||||
# Update the symlink
|
||||
@ -47,9 +46,17 @@ if [[ -n $TAG_NAME ]]; then
|
||||
git add versions.json
|
||||
git commit -m "Add documentation for ${TAG_NAME} release: ${SHA}"
|
||||
elif [[ $BETA = "true" ]]; then
|
||||
if git diff --exit-code --quiet -- beta/; then
|
||||
echo "No changes to the output on this push; exiting."
|
||||
exit 0
|
||||
fi
|
||||
git add beta
|
||||
git commit -m "Automatic deploy to GitHub Pages (beta): ${SHA}"
|
||||
else
|
||||
if git diff --exit-code --quiet; then
|
||||
echo "No changes to the output on this push; exiting."
|
||||
exit 0
|
||||
fi
|
||||
git add .
|
||||
git commit -m "Automatic deploy to GitHub Pages: ${SHA}"
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user