Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shanshin committed Feb 17, 2024
1 parent 9e53879 commit 600c400
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/jekyll-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,28 @@ concurrency:
cancel-in-progress: false

jobs:
# Build job
build:
prepare:
name: Prepare docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
cache: 'gradle'
- uses: gradle/gradle-build-action@v2
with:
gradle-home-cache-cleanup: true
- name: Build docs
run: ./gradlew releaseDocs

# Build job
build:
runs-on: ubuntu-latest
needs: prepare
steps:
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Build with Jekyll
Expand Down

0 comments on commit 600c400

Please sign in to comment.