Skip to content

Commit

Permalink
ci: run for PRs; update Gemfile.lock (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
m4tx authored Jan 3, 2024
1 parent 7a10351 commit b8f7080
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
22 changes: 19 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,28 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
interval: "monthly"
groups:
dependencies:
patterns:
- "*"

- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "weekly"
interval: "monthly"
groups:
dependencies:
update-types:
- "minor"
- "patch"

- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
interval: "monthly"
groups:
dependencies:
update-types:
- "minor"
- "patch"
2 changes: 2 additions & 0 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
push:
branches:
- master
pull_request:

jobs:
github-pages:
Expand All @@ -21,6 +22,7 @@ jobs:
docker rm -v $id
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/master'
with:
github_token: ${{ secrets.GHTOKEN }}
publish_dir: ./__build
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3-bullseye AS build
FROM ruby:3.2-bullseye AS build

WORKDIR /srv/jekyll
COPY Gemfile Gemfile.lock /srv/jekyll/
Expand Down

0 comments on commit b8f7080

Please sign in to comment.