Skip to content

Update GH Actions dependencies (#254) #139

Update GH Actions dependencies (#254)

Update GH Actions dependencies (#254) #139

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
# allow to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- run: sudo apt-get install ruby-full build-essential zlib1g-dev git
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.0'
- run: gem install bundler jekyll --no-document
- run: bundle install
- run: bundle exec jekyll build
- uses: JamesIves/github-pages-deploy-action@4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: _site
clean: true