Merge pull request #474 from SpineEventEngine/absolute-url-in-robots-txt #366
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: Proof Links | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
proof-links: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Set up Ruby and Bundler | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '2.7.4' | |
# Bundler version is restricted to `2.4.22`, | |
# as we want to use Ruby `2.7.4` to match GH Pages environment. | |
# | |
# Any newer versions of Bundler require Ruby 3.x, | |
# which are much newer than what's GH Pages has at the moment. | |
# | |
- name: Run Jekyll build | |
run: | | |
gem install bundler -v 2.4.22 | |
bundle install | |
bundle exec jekyll build | |
- name: Proof Links | |
run: ./_script/proof-links |