mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-25 10:31:05 +00:00
feat: change the name of the static package's root directory
Change the name of the static package's root directory so that it is `wallabag-2.4.2` instead of simply `2.4.2`.
This commit is contained in:
parent
3ac38d6e00
commit
fc4c97e413
1 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
|||
# You can execute this file to create a new package for wallabag
|
||||
# eg: `sh release.sh 2.3.3 /tmp wllbg-release prod`
|
||||
|
||||
VERSION=$1
|
||||
VERSION=wallabag-$1
|
||||
TMP_FOLDER=$2
|
||||
RELEASE_FOLDER=$3
|
||||
ENV=$4
|
||||
|
@ -13,8 +13,8 @@ git clone git@github.com:wallabag/wallabag.git "$TMP_FOLDER"/"$RELEASE_FOLDER"/"
|
|||
cd "$TMP_FOLDER"/"$RELEASE_FOLDER"/"$VERSION" && SYMFONY_ENV="$ENV" COMPOSER_MEMORY_LIMIT=-1 composer install -n --no-dev
|
||||
cd "$TMP_FOLDER"/"$RELEASE_FOLDER"/"$VERSION" && php bin/console wallabag:install --env="$ENV" -n
|
||||
cd "$TMP_FOLDER"/"$RELEASE_FOLDER"/"$VERSION" && php bin/console assets:install --env="$ENV" --symlink --relative
|
||||
cd "$TMP_FOLDER"/"$RELEASE_FOLDER" && tar czf wallabag-"$VERSION".tar.gz --exclude="var/cache/*" --exclude="var/logs/*" --exclude="var/sessions/*" --exclude=".git" "$VERSION"
|
||||
cd "$TMP_FOLDER"/"$RELEASE_FOLDER" && tar czf "$VERSION".tar.gz --exclude="var/cache/*" --exclude="var/logs/*" --exclude="var/sessions/*" --exclude=".git" "$VERSION"
|
||||
echo "MD5 checksum of the package for wallabag $VERSION"
|
||||
md5 "$TMP_FOLDER"/"$RELEASE_FOLDER"/wallabag-"$VERSION".tar.gz
|
||||
md5 "$TMP_FOLDER"/"$RELEASE_FOLDER"/"$VERSION".tar.gz
|
||||
echo "Package to upload to the release server:"
|
||||
echo "$TMP_FOLDER"/"$RELEASE_FOLDER"/wallabag-"$VERSION".tar.gz
|
||||
echo "$TMP_FOLDER"/"$RELEASE_FOLDER"/"$VERSION".tar.gz
|
||||
|
|
Loading…
Reference in a new issue