Merge pull request #114 from PDF-Archiver/renovate/font-awesome-6.x #146
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: Jekyll site CI | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- uses: helaili/jekyll-action@v2 | |
env: | |
JEKYLL_PAT: ${{ secrets.JEKYLL_PAT }} | |
with: | |
# workaround for this: https://github.com/helaili/jekyll-action/issues/164 | |
pre_build_commands: git config --global http.version HTTP/1.1; apk fetch git-lfs; | |
token: ${{ secrets.GITHUB_TOKEN }} | |
target_branch: "master" |