Game of life #2
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 Ruby Gem | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: [ '3.1', '3.2' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby, | |
# change this to (see https://github.com/ruby/setup-ruby#versioning): | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: Install | |
run: bundle install | |
- name: Build jekyll site | |
run: bundle exec jekyll build | |
- name: Build the gem | |
continue-on-error: true | |
run: | | |
gem build *.gemspec | |
echo `find . -name "*.gem" | tail -1 | awk -F"[/]" '{print $2}'` | |
- name: Gems | |
continue-on-error: true | |
run: | | |
gem install github-pages | |
gem update --system | |
- name: Install theme gems | |
continue-on-error: true | |
run: | | |
gem install type-on-strap | |
gem install jekyll-theme-type-on-strap | |
- name: Build with Docker | |
continue-on-error: true | |
run: | | |
cd assets && docker build . |