Bump rexml from 3.2.6 to 3.2.8 #84
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: Jekyll site CI | |
on: | |
push: | |
branches: | |
# Only build on the website-v2 branch | |
- website-v2 | |
# Allow for manual deployments | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build site | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: website-v2 | |
# Used to setup NodeJS | |
- name: Setup NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: npm | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
bundler-cache: true | |
- name: Install dependencies | |
run: npm ci | |
- name: Build and deploy site | |
uses: EdricChan03/action-build-deploy-ghpages@v2.6.0 | |
with: | |
github_token: ${{ github.token }} | |
git_force: 'false' | |
override_gh_pages_branch: 'true' | |
show_bundle_log: 'true' | |
bundler_version: '2.1.4' |