This repository has been archived by the owner on Dec 27, 2023. It is now read-only.
Fix Img Links & Update Download Version (#111) #31
This file contains 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 deploy site | |
on: | |
push: | |
branches: | |
- release | |
paths-ignore: | |
- '.github/ISSUE_TEMPLATE/**' | |
- '.github/PULL_REQUEST_TEMPLATE.md' | |
- '_drafts/**' | |
- '.gitignore' | |
- 'README.md' | |
jobs: | |
github-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/cache@v2 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- uses: helaili/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
target_branch: 'master' | |
pre_build_commands: apk --update add imagemagick6 imagemagick6-c++ imagemagick6-dev imagemagick6-libs |