Skip to content

Commit

Permalink
Rearrange build process in GitHub actions
Browse files Browse the repository at this point in the history
The build Jekyll site step has been moved after the execution of custom scripts in the GitHub actions workflow. This adjustment ensures that any changes made by the scripts are incorporated into the Jekyll build process.
  • Loading branch information
koriym committed Apr 17, 2024
1 parent 3fb2cca commit 9f9fa7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Build Jekyll site
run: bundle exec jekyll build

- name: Run custom scripts
run: |
ruby bin/merge_md_files.rb
- name: Build Jekyll site
run: bundle exec jekyll build

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
Expand Down

0 comments on commit 9f9fa7b

Please sign in to comment.