Skip to content

Commit

Permalink
fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
fdobad committed Feb 10, 2025
1 parent ff3367c commit 0890ea2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
version: 2
updates:
- package-ecosystem: bundler
directory: /site
- package-ecosystem: "bundler"
directory: "/site"
schedule:
interval: weekly
interval: "weekly"
allow:
- dependency-type: direct
- dependency-type: "direct"

- package-ecosystem: github-actions
directory: /.github
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: weekly
interval: "weekly"
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: CI

on:
push:
branches: ["main"]
# push:
# branches: ["main"]
pull_request:

jobs:
Expand All @@ -19,4 +19,4 @@ jobs:
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: Build with Jekyll
run: bundle exec jekyll build
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"

0 comments on commit 0890ea2

Please sign in to comment.