Skip to content

Merge pull request #2 from OnoSendae/feat/scroll-adjust #25

Merge pull request #2 from OnoSendae/feat/scroll-adjust

Merge pull request #2 from OnoSendae/feat/scroll-adjust #25

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build-and-deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1'
bundler-cache: true
- name: Install dependencies
run: bundle install
- name: Build site
run: bundle exec jekyll build
- name: Verify build output
run: |
echo "Checking _site directory..."
ls -la _site/ | head -20
echo "Checking for index.html..."
ls -la _site/index.html || echo "WARNING: index.html not found!"
echo "Counting files in _site..."
find _site -type f | wc -l
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./_site
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4