我已经玩了一段时间的钩子了,但我似乎无法让post-receive
钩子按照我需要的方式工作。
在将更改推送到存储库后,我正在尝试post-receive
创建一个 zip 文件夹并将其放置在 git 存储库文件夹之外的某个位置。
我已经玩了一段时间的钩子了,但我似乎无法让post-receive
钩子按照我需要的方式工作。
在将更改推送到存储库后,我正在尝试post-receive
创建一个 zip 文件夹并将其放置在 git 存储库文件夹之外的某个位置。
在Daniel Byrne的这篇文章中,您有一个通过 post-receive 挂钩部署 zip 的好例子:
这个想法是使用git archive --format=zip
:
#!/bin/bash
#
# A post commit hook that takes any updates pushed to the 'release' branch
# and creates a release directory for the new version under the webroot.
# Live site is then symlinked to this new release directory.
oldrev=$1
newrev=$2
branch=$3
# this is the root of the website (a symlink to a release directory)
webroot=/var/www/danielbyrne.net/www
if [ "$branch" == "release" ]
then
# create a release directory to extract files into
target=/var/www/danielbyrne.net/releases/$2/
mkdir $target
echo "Making target directory: $target"
# create an archive in the webroot of danielbyrne.net
/usr/bin/git archive master --format zip --output $target/deploy.zip
echo "unzipping archive..."
# extract the archive
unzip -o -q $target/deploy.zip -d $target
echo "removing deployment archive"
# remove the archive file
rm $target/deploy.zip
echo "switching symbolic link to $target"
# now switch the live site to point to the new release
ln -nsf $target $webroot
echo "done";
fi