fix sorting, add English names to components #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Triggers the workflow when pull request is opened or updated | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# ref: https://github.com/actions/starter-workflows/tree/main/pages | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0 | |
with: | |
ruby-version: '3.1' # Not needed with a .ruby-version file | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
cache-version: 0 # Increment this number if you need to re-download cached gems | |
# Fix gemfile not found issue | |
- name: Bundle init | |
run: bundle init && bundle add jekyll | |
- name: Build with Jekyll | |
# Outputs to the './_site' directory by default | |
# run: bundle exec jekyll build | |
run: bundle exec jekyll build --config _config_development.yml | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jekyll-site | |
path: ./_site |