Skip to content

Updated environment variable in workflow #17

Updated environment variable in workflow

Updated environment variable in workflow #17

Workflow file for this run

name: Build and deploy Jekyll site to GitHub Pages
on:
push:
branches:
- master
jobs:
github-pages:
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
bundler-cache: true
- name: Install dependencies
run: |
bundle config unset deployment
sudo gem install bundler:2.2.15
bundle install
bundle add kramdown-parser-gfm
bundle install
- name: Configure Git
run: |
git config --global --add safe.directory /github/workspace
- uses: helaili/jekyll-action@2.0.1
env:
JEKYLL_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}