diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f20d450..4f92de3 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -39,7 +39,19 @@ jobs: echo "Ruby version: $(ruby --version)" echo "Bundler version: $(bundle --version)" echo "Jekyll version: $(bundle exec jekyll --version)" + echo "Listing files before build:" + ls -la + echo "Listing _labs directory:" + ls -la _labs/ + echo "Listing _labs/introducing_attacks directory:" + ls -la _labs/introducing_attacks/ bundle exec jekyll build --verbose + echo "Listing _site directory after build:" + ls -la _site/ + echo "Listing _site/labs directory:" + ls -la _site/labs/ || echo "No labs directory found" + echo "Listing _site/assets directory:" + ls -la _site/assets/ || echo "No assets directory found" env: JEKYLL_ENV: production PAGES_REPO_NWO: cliffe/HacktivityLabSheets diff --git a/_config.yml b/_config.yml index f39cbf2..86f6032 100644 --- a/_config.yml +++ b/_config.yml @@ -1,7 +1,7 @@ # Site settings title: Hacktivity Lab Sheets description: Lab sheets for Hacktivity SecGen labs -# baseurl: "/HacktivityLabSheets" # Commented out for local development +baseurl: "/HacktivityLabSheets" # Required for GitHub Pages url: "https://cliffe.github.io" # GitHub Pages settings