Skip to content

Commit 366838b

Browse files
committed
ci: Rename workflow file / Use Ruby 3.3
1 parent 0e1740b commit 366838b

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

.github/workflows/deploy.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Deploy
2+
on:
3+
push:
4+
branches:
5+
- main
6+
jobs:
7+
deploy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: Set up Ruby
12+
uses: ruby/setup-ruby@v1
13+
with:
14+
ruby-version: 3.3
15+
bundler-cache: true
16+
- name: Jekyll Build
17+
run: bundle exec jekyll build
18+
- name: Deploy
19+
uses: peaceiris/actions-gh-pages@v4
20+
with:
21+
personal_token: ${{ secrets.GITHUB_TOKEN }}
22+
publish_dir: ./_site

.github/workflows/gh-pages.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)