Skip to content

Commit

Permalink
Remove pages deploy step from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
CoffeeCoder1 committed Dec 26, 2024
1 parent b64be01 commit 43c29b4
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 64 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Jekyll CI

on:
push:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0
with:
ruby-version: '3.1' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0 # Increment this number if you need to re-download cached gems
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
# Outputs to the './_site' directory by default
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production
- name: Upload artifact
# Automatically uploads an artifact from the './_site' directory by default
uses: actions/upload-pages-artifact@v3

64 changes: 0 additions & 64 deletions .github/workflows/jekyll.yml

This file was deleted.

0 comments on commit 43c29b4

Please sign in to comment.