2015-12-04 14:54:05 +00:00
|
|
|
#!/usr/bin/env bash
|
2021-07-16 14:15:31 +01:00
|
|
|
# SPDX-License-Identifier: MIT
|
2015-12-04 14:54:05 +00:00
|
|
|
|
2020-06-09 15:03:35 +01:00
|
|
|
# This script is executed by GitHub Actions when a PR is merged (i.e. in the `deploy` step).
|
2019-02-04 22:34:33 +00:00
|
|
|
set -ex
|
2015-12-04 14:54:05 +00:00
|
|
|
|
|
|
|
function initialize {
|
2023-12-26 13:02:55 +00:00
|
|
|
export TLDR_ARCHIVE="tldr.zip"
|
|
|
|
|
|
|
|
if [[ ! -f $TLDR_ARCHIVE ]]; then
|
|
|
|
echo "No changes to deploy."
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2015-12-04 14:54:05 +00:00
|
|
|
export SITE_HOME="$HOME/site"
|
2024-01-11 20:34:38 +00:00
|
|
|
export LANG_ARCHIVES="$GITHUB_WORKSPACE/language_archives"
|
|
|
|
export PDFS="$GITHUB_WORKSPACE/scripts/pdf"
|
|
|
|
export INDEX="$GITHUB_WORKSPACE/index.json"
|
|
|
|
RELEASE_TAG="$(git describe --tags --abbrev=0)"
|
|
|
|
export RELEASE_TAG
|
2015-12-04 14:54:05 +00:00
|
|
|
|
2019-02-04 13:59:17 +00:00
|
|
|
# Configure git.
|
2021-02-22 12:45:12 +00:00
|
|
|
git config --global user.email "tldrbotgithub@gmail.com"
|
|
|
|
git config --global user.name "tldr bot"
|
2015-12-04 14:54:05 +00:00
|
|
|
git config --global push.default simple
|
|
|
|
git config --global diff.zip.textconv "unzip -c -a"
|
2019-02-04 13:59:17 +00:00
|
|
|
|
|
|
|
# Decrypt and add deploy key.
|
|
|
|
eval "$(ssh-agent -s)"
|
2024-01-11 20:34:38 +00:00
|
|
|
echo "$DEPLOY_KEY" > id_ed25519
|
2019-02-04 13:59:17 +00:00
|
|
|
chmod 600 id_ed25519
|
|
|
|
ssh-add id_ed25519
|
2015-12-04 14:54:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function upload_assets {
|
2023-12-26 13:02:55 +00:00
|
|
|
git clone --quiet --depth 1 "git@github.com:tldr-pages/tldr-pages.github.io.git" "$SITE_HOME"
|
|
|
|
|
2024-01-11 20:34:38 +00:00
|
|
|
cp -f "$TLDR_ARCHIVE" "$SITE_HOME/assets/"
|
|
|
|
find "$LANG_ARCHIVES" -maxdepth 1 -name "*.zip" -exec cp -f {} "$SITE_HOME/assets/" \;
|
|
|
|
cp -f "$INDEX" "$SITE_HOME/assets/"
|
|
|
|
find "$PDFS" -maxdepth 1 -name "*.pdf" -exec cp -f {} "$SITE_HOME/assets/" \;
|
2015-12-04 14:54:05 +00:00
|
|
|
|
2023-12-24 16:51:07 +00:00
|
|
|
cd "$SITE_HOME/assets"
|
|
|
|
sha256sum -- index.json *.zip > tldr.sha256sums
|
2020-11-27 09:29:09 +00:00
|
|
|
|
2024-01-11 20:34:38 +00:00
|
|
|
# Old way of distributing assets. This needs to be deleted later.
|
2019-02-03 13:57:35 +00:00
|
|
|
git add -A
|
2023-12-26 13:02:55 +00:00
|
|
|
git commit -m "[GitHub Actions] uploaded assets after commit tldr-pages/tldr@$GITHUB_SHA"
|
2015-12-04 23:09:18 +00:00
|
|
|
git push -q
|
2023-12-26 13:02:55 +00:00
|
|
|
echo "Assets (pages archive, index and checksums) deployed to the static site."
|
2024-01-11 20:34:38 +00:00
|
|
|
|
|
|
|
gh release --repo tldr-pages/tldr upload --clobber "$RELEASE_TAG" -- \
|
|
|
|
tldr.sha256sums \
|
|
|
|
"$TLDR_ARCHIVE" \
|
|
|
|
"$INDEX" \
|
|
|
|
"$LANG_ARCHIVES/"*.zip \
|
|
|
|
"$PDFS/"*.pdf
|
|
|
|
echo "Assets deployed to GitHub releases."
|
2015-12-04 14:54:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
###################################
|
|
|
|
# MAIN
|
|
|
|
###################################
|
|
|
|
|
2019-02-04 13:59:17 +00:00
|
|
|
initialize
|
2019-02-04 22:34:33 +00:00
|
|
|
upload_assets
|