Add emoji to 404 error message #148
Workflow file for this run
This file contains hidden or 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: Beautiful Jekyll CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: Build Jekyll | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trust workspace for Git | |
| run: git config --global --add safe.directory /github/workspace | |
| - uses: actions/checkout@v4 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.3' | |
| - name: Install dependencies | |
| run: bundle install && bundle exec appraisal install | |
| - name: Cache gems | |
| uses: actions/cache@v3 | |
| with: | |
| path: vendor/bundle | |
| key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-gems- | |
| - name: Build site | |
| run: bundle exec appraisal jekyll build --future |