Skip to content

Commit

Permalink
ci: Rename workflow file / Use Ruby 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
toshimaru committed Jul 5, 2024
1 parent 0e1740b commit 07a601f
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
bundler-cache: true
- name: Jekyll Build
run: bundle exec jekyll build
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
personal_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site
22 changes: 0 additions & 22 deletions .github/workflows/gh-pages.yml

This file was deleted.

0 comments on commit 07a601f

Please sign in to comment.