chore(deps): bump image_optim_pack from 0.13.1 to 0.13.1.20260418 #1076
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| #branches: [master] | |
| pull_request: | |
| #branches: [master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| - uses: actions/setup-node@v6 | |
| with: | |
| cache: npm | |
| - uses: actions/cache@v5 | |
| with: | |
| path: ".jampack" | |
| key: jampack-${{ github.run_id }} | |
| restore-keys: | | |
| jampack | |
| - name: Build | |
| run: | | |
| env JEKYLL_ENV=production bundle exec rake build | |
| - name: Deploy 🚀 | |
| if: github.ref == 'refs/heads/master' | |
| uses: JamesIves/github-pages-deploy-action@v4.8.0 | |
| with: | |
| branch: gh-pages | |
| folder: _build |