Skip to content

Commit

Permalink
docker-img: using bundler for executing jekyll
Browse files Browse the repository at this point in the history
  • Loading branch information
shankerwangmiao committed Aug 27, 2024
1 parent 60fbb59 commit bdc000a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
--tmpfs /data/node_modules:exec \
--env VISUALIZER=1 \
tunathu/mirror-web:localtest \
bash -c "npm install rollup-plugin-visualizer && jekyll build --future"
bash -c "npm install rollup-plugin-visualizer && bundle exec jekyll build --future"
-
name: Upload Build Artifacts
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ ENV LANG C.UTF-8
ENV JEKYLL_ENV production
ENV VITE_RUBY_VITE_BIN_PATH /node_modules/.bin/vite

CMD ["jekyll", "build"]
CMD ["bundle", "exec", "jekyll", "build"]

0 comments on commit bdc000a

Please sign in to comment.