From 3c5051eb941df101d86f3841f229e523d2f15cab Mon Sep 17 00:00:00 2001 From: Benedict Lau Date: Tue, 25 Sep 2018 10:00:59 +0200 Subject: [PATCH] Uncomment GitHub Releases packaging --- package.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package.sh b/package.sh index 0dded82..3791417 100755 --- a/package.sh +++ b/package.sh @@ -7,12 +7,12 @@ RELEASE_VERSION=$1 ################################################### # Create directory for release assets ready to be published -#rm -rf publish -#mkdir publish +rm -rf publish +mkdir publish # Package assets in tar.gz and zip formats -#tar --create --gzip -f "publish/workshop-materials-${RELEASE_VERSION}.tar.gz" -C output . -#cd output; zip --recurse-paths "../publish/workshop-materials-${RELEASE_VERSION}.zip" .; cd .. +tar --create --gzip -f "publish/workshop-materials-${RELEASE_VERSION}.tar.gz" -C output . +cd output; zip --recurse-paths "../publish/workshop-materials-${RELEASE_VERSION}.zip" .; cd .. ########################################## # Generate hosted assets for GitHub Pages @@ -111,4 +111,4 @@ for mod in module-*; do done # Build static website -cd site; bundle install; bundle exec jekyll build; cd .. \ No newline at end of file +cd site; bundle install; bundle exec jekyll build; cd ..