Skip to content

Commit

Permalink
Update jekyll-docker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tzafrirhn authored Jan 29, 2024
1 parent aecdcba commit 5130751
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions .github/workflows/jekyll-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,24 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build the site in the jekyll/builder container
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Ruby
uses: actions/setup-ruby@v1
with:
runy-version: 3.1.3

- name: Install Jekyll and dependencies
run: |
gem installer bundler
bundle install
- name: Download Publisher
run: |
mkdir ./ILCore/input-cache/
curl -L https://github.com/HL7/fhir-ig-publisher/releases/latest/download/publisher.jar -o "./ILCore/input-cache/publisher.jar"
- name: Build Site
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
jekyll/builder:latest /bin/bash -c "chmod -R 777 /srv/jekyll && jekyll build --future"
./ILCore/_genonce.sh

0 comments on commit 5130751

Please sign in to comment.