Skip to content

Updating ruby, bundler, and gems #55

Updating ruby, bundler, and gems

Updating ruby, bundler, and gems #55

Workflow file for this run

name: "Build and Deploy to GitHub Pages"
on:
push:
branches:
- main
paths-ignore:
- .editorconfig
- .envrc
- .github/**
- .gitignore
- .vscode/**
- bin/**
- Brewfile
- lefthook.yml
- LICENSE
- README.md
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# submodules: true
# If using the 'assets' git submodule from Chirpy Starter, uncomment above
# (See: https://github.com/cotes2020/chirpy-starter/tree/main/assets)
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Build site
run: bin/build
- name: Test site
run: bin/test
- name: Upload site artifact
uses: actions/upload-pages-artifact@v3
with:
path: "_site"
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4