update gems #1
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 and deploy jekyll site | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: # Allows a run of this workflow to be triggerred manually from the Actions tab | |
jobs: | |
jekyll: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📂 setup | |
uses: actions/checkout@v4 | |
- name: 💎 setup ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.3.1 | |
bundler-cache: true | |
- name: 🔨 install dependencies & build site | |
uses: jayhesselberth/[email protected] | |
with: | |
enable_cache: true | |
- name: 🚀 deploy | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: ./_site | |