Bump the bundler-dependencies group across 1 directory with 7 updates #191
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build and Publish | |
| on: [push] | |
| concurrency: | |
| group: ${{ github.workflow}}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build_and_publish: | |
| name: Build and Publish | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: "Ruby: Install Ruby" | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| rubygems: latest | |
| - name: Jekyll build | |
| env: | |
| JEKYLL_ENV: production | |
| run: bundle exec jekyll build --trace --profile | |
| - name: Publish | |
| if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch) | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./_site | |
| publish_branch: gh-pages | |
| enable_jekyll: false |