Removing "data API gateway" language #15
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 Jekyll site | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# install ruby | |
# action already handles gems caches | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7.0 | |
bundler-cache: true | |
# simple build only | |
- name: Build jekyll site | |
run: bundle exec jekyll build | |
env: | |
JEKYLL_ENV: production |