mirror of
https://github.com/godotengine/godot-website.git
synced 2025-12-31 09:48:43 +03:00
Ruby 3.4 removed several standard library packages, so they have to be installed as gems instead. This also updates Jekyll to use a version that's supported in Ruby 3.4. The minimum required Ruby version is now 3.2.
54 lines
1.2 KiB
YAML
54 lines
1.2 KiB
YAML
name: Build and publish
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [ master ]
|
|
|
|
# Make sure jobs cannot overlap (e.g. one from push and one from schedule).
|
|
concurrency:
|
|
group: published-ci
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
name: Build and deploy to the published branch
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: 'master'
|
|
|
|
# Configure the build environment.
|
|
|
|
- name: Install Ruby 3.2
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: '3.2'
|
|
# Runs 'bundle install' and caches installed gems automatically
|
|
bundler-cache: true
|
|
|
|
- name: Install Minify
|
|
run: sudo apt-get update && sudo apt-get install minify
|
|
|
|
# Build the website.
|
|
|
|
- name: Build the static website
|
|
run: bundle exec jekyll build
|
|
|
|
|
|
# Publish the build results
|
|
|
|
- name: Deploy to the published branch 🚀
|
|
uses: JamesIves/github-pages-deploy-action@v4
|
|
with:
|
|
branch: published
|
|
folder: _site
|
|
# Configure the commit author.
|
|
git-config-name: 'Godot Organization'
|
|
git-config-email: '<>'
|
|
# Remove outdated files from the target directory.
|
|
clean: true
|