Skip to content

Commit f907c48

Browse files
committed
Update
1 parent 37d7257 commit f907c48

File tree

3 files changed

+26
-12
lines changed

3 files changed

+26
-12
lines changed

.github/workflows/jekyll.yml

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,58 @@
1+
# This workflow uses actions that are not certified by GitHub.
2+
# They are provided by a third-party and are governed by
3+
# separate terms of service, privacy policy, and support
4+
# documentation.
5+
6+
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
17
name: Deploy Jekyll site to Pages
28

39
on:
10+
# Runs on pushes targeting the default branch
411
push:
5-
branches: ["main"]
12+
branches: ["master"]
13+
14+
# Allows you to run this workflow manually from the Actions tab
615
workflow_dispatch:
716

17+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
818
permissions:
919
contents: read
1020
pages: write
1121
id-token: write
1222

23+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
24+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
1325
concurrency:
14-
group: "github-pages"
26+
group: "pages"
1527
cancel-in-progress: false
1628

1729
jobs:
30+
# Build job
1831
build:
1932
runs-on: ubuntu-latest
2033
steps:
2134
- name: Checkout
22-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
2336
- name: Setup Ruby
24-
uses: ruby/setup-ruby@v1
37+
# https://github.com/ruby/setup-ruby/releases/tag/v1.207.0
38+
uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4
2539
with:
26-
ruby-version: '3.x' # Use a recent Ruby version
27-
bundler-cache: true # runs bundle install and caches dependencies
40+
ruby-version: '3.1' # Not needed with a .ruby-version file
41+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
42+
cache-version: 0 # Increment this number if you need to re-download cached gems
2843
- name: Setup Pages
2944
id: pages
30-
uses: actions/configure-pages@v4
45+
uses: actions/configure-pages@v5
3146
- name: Build with Jekyll
32-
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_url }}"
47+
# Outputs to the './_site' directory by default
48+
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
3349
env:
3450
JEKYLL_ENV: production
3551
- name: Upload artifact
52+
# Automatically uploads an artifact from the './_site' directory by default
3653
uses: actions/upload-pages-artifact@v3
37-
with:
38-
path: ./_site
3954

55+
# Deployment job
4056
deploy:
4157
environment:
4258
name: github-pages

_posts/en/2025-10-23-aspectran-9.2.0-release-notes.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,3 @@ Aspectran 9.2.0 is a significant release focused on dramatically improving the f
4444
* **Other Important Fixes**
4545
* Fixed a `NotSerializableException` in `ConcurrencyThrottleSupport`.
4646
* Fixed a bug where the Quartz scheduler was not created under certain conditions and added logic to prevent re-initialization.
47-

_posts/ko/2025-10-23-aspectran-9.2.0-release-notes.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,3 @@ Aspectran 9.2.0은 프레임워크의 안정성, 정확성, 성능을 대폭 향
4545
* **기타 중요 버그 수정**
4646
* `ConcurrencyThrottleSupport` 클래스에서 `NotSerializableException`이 발생하던 직렬화 문제를 해결했습니다.
4747
* 특정 조건에서 Quartz 스케줄러가 생성되지 않던 버그를 수정하고, 재초기화를 방지하는 로직을 추가했습니다.
48-

0 commit comments

Comments
 (0)