Swap to jerryjvl build repo

This commit is contained in:
2023-07-11 23:49:30 +00:00
parent 93a90a5ba0
commit 7080a5d54d
5 changed files with 76 additions and 65 deletions

View File

@@ -1,17 +1,24 @@
#!/bin/sh
# Set verbose mode
set -x
set -x # verbose mode
set -e # stop executing after error
# Stop executing after error
set -e
echo "Starting Jekyll build"
# Change permissions
chmod -R a+w ./
####################################################
# Set workspace permissions
####################################################
pwd
chmod -R a+w /github/workspace
ls -R
####################################################
# Build the Jekyll site
####################################################
# Run command
jekyll build
jekyll build --trace
####################################################
# Build completed
####################################################
echo "Completed Jekll build"