Skip to content

Commit

Permalink
Setup deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
LuanHimmlisch committed Sep 28, 2024
1 parent e774f89 commit e08120a
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,21 @@ jobs:

steps:
- uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 22

- name: Install npm dependencies
run: npm install

- name: Run npm build
run: npm run build

- name: Build the site in the jekyll/builder container
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"
-v ${{ github.workspace }}:/srv/jekyll \
-v ${{ github.workspace }}/build:/srv/jekyll/build \
jekyll/builder:latest /bin/bash -c "chmod -R 777 /srv/jekyll && jekyll build --destination /srv/jekyll/build --future"

0 comments on commit e08120a

Please sign in to comment.