chore(deps): bump rack from 3.0.8 to 3.0.9.1 #538
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: CI | |
on: | |
push: | |
#branches: [master] | |
pull_request: | |
#branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
rubygems: 3.4.7 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
- name: Build | |
run: | | |
env JEKYLL_ENV=production bundle exec rake build | |
- name: Deploy 🚀 | |
if: github.ref == 'refs/heads/master' | |
uses: JamesIves/github-pages-deploy-action@v4.5.0 | |
with: | |
branch: gh-pages | |
folder: _build |