Publish Action: Resolve Issues
All checks were successful
/ jekyll (push) Successful in 37s

This commit is contained in:
Bill Niblock 2025-07-17 12:25:49 -04:00
parent 4009a67996
commit 6480e65697

View file

@ -14,22 +14,21 @@ jobs:
path: _site path: _site
- name: Setup Build Environment - name: Setup Build Environment
run: | run: |
echo "Current User: $(whoami)"
mkdir .jekyll-cache && echo "Make Jekyll Cache Directory" mkdir .jekyll-cache && echo "Make Jekyll Cache Directory"
mkdir -p ${{ env.GITHUB_WORKSPACE }}/vendor/bundle && echo "Make Bundle Vendor Directory" mkdir -p ${{ env.GITHUB_WORKSPACE }}/vendor/bundle && echo "Make Bundle Vendor Directory"
bundle config set frozen true bundle config set frozen true
bundle install bundle install
# - name: Build Site - name: Build Site
# run: jekyll build --trace run: |
# - name: Include the Codeberg pages .domains file jekyll build --trace
# run: cp ${{ env.GITHUB_WORKSPACE }}/.domains ${{ env.GITHUB_WORKSPACE }}/_site/.domains cp ${{ env.GITHUB_WORKSPACE }}/.domains ${{ env.GITHUB_WORKSPACE }}/_site/.domains
# - name: Publish Site - name: Publish Site
# run: | run: |
# cd _site cd _site
# git config --global --add safe.directory /workspace/vagabond/ttrpg-compendium/_site git config --global --add safe.directory /workspace/vagabond/ttrpg-compendium/_site
# git config user.name "Scribe [bot]" git config user.name "Scribe [bot]"
# git config user.email "scribe@niblock.tech" git config user.email "scribe@niblock.tech"
# git add -A . git add -A .
# git status git status
# git commit -m "Automated Publish" git commit -m "Automated Publish"
# git push git push