Files
jekyll-build-pages/entrypoint.sh
2023-07-11 23:49:30 +00:00

25 lines
574 B
Bash

#!/bin/sh
set -x # verbose mode
set -e # stop executing after error
echo "Starting Jekyll build"
####################################################
# Set workspace permissions
####################################################
chmod -R a+w /github/workspace
####################################################
# Build the Jekyll site
####################################################
jekyll build --trace
####################################################
# Build completed
####################################################
echo "Completed Jekll build"