Files
HacktivityLabSheets/.github/workflows/deploy.yml
Z. Cliffe Schreuders a3e19e6b9c Update Gemfile to specify github-pages version and change Ruby version in GitHub Actions workflow
- Updated the github-pages gem version to '~> 227' for compatibility.
- Changed the Ruby version in the GitHub Actions workflow from 2.7 to 3.0 for improved support.
2025-09-23 14:12:48 +01:00

61 lines
1.3 KiB
YAML

name: Deploy Jekyll site to Pages
on:
push:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
bundler-cache: false
- name: Install dependencies
run: |
bundle install
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Build with Jekyll
run: |
echo "Ruby version: $(ruby --version)"
echo "Bundler version: $(bundle --version)"
echo "Jekyll version: $(bundle exec jekyll --version)"
bundle exec jekyll build --verbose
env:
JEKYLL_ENV: production
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./_site
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4