krata/.github/workflows/pages-deploy.yml.hook

75 lines
1.7 KiB
Plaintext
Raw Normal View History

2020-07-28 20:27:40 +02:00
name: 'Automatic build'
on:
push:
branches:
- master
paths-ignore:
2020-10-03 10:45:17 +02:00
- .gitignore
- README.md
- LICENSE
2020-07-28 20:27:40 +02:00
jobs:
continuous-delivery:
2020-07-28 20:27:40 +02:00
runs-on: ubuntu-latest
2020-10-03 10:45:17 +02:00
env:
GEMS_PATH: /tmp/bundle
2020-07-28 20:27:40 +02:00
steps:
- uses: actions/setup-ruby@v1
with:
2020-10-03 10:45:17 +02:00
ruby-version: 2.6.x
2020-07-28 20:27:40 +02:00
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Bundle Caching
id: bundle-cache
uses: actions/cache@v1
with:
2020-10-03 10:45:17 +02:00
path: ${{ env.GEMS_PATH }}
2020-07-28 20:27:40 +02:00
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Bundle config
run: |
2020-10-03 10:45:17 +02:00
bundle config path ${{ env.GEMS_PATH }}
2020-07-28 20:27:40 +02:00
- name: Bundle Install
if: steps.bundle-cache.outputs.cache-hit != 'true'
run: |
bundle install
- name: Bundle Install locally
if: steps.bundle-cache.outputs.cache-hit == 'true'
run: |
bundle install --local
- name: Check baseurl
2020-07-28 20:27:40 +02:00
run: |
2020-11-19 13:39:02 +01:00
baseurl="$(grep '^baseurl:' _config.yml | sed "s/.*: *//;s/['\"]//g;s/#.*//")"
if [[ -n $baseurl ]]; then
echo "SPEC_TEST=_site_no_baseurl" >> $GITHUB_ENV
fi
2020-07-28 20:27:40 +02:00
- name: Build Site
2020-07-28 20:27:40 +02:00
run: |
2020-11-19 13:39:02 +01:00
JEKYLL_ENV=production bundle exec jekyll b
2020-07-28 20:27:40 +02:00
if [[ -n $SPEC_TEST ]]; then
# Bypass the defects of htmlproofer
2020-11-19 13:39:02 +01:00
JEKYLL_ENV=production bundle exec jekyll b -b "" -d "$SPEC_TEST"
fi
2020-07-28 20:27:40 +02:00
- name: Test Site
2020-07-28 20:27:40 +02:00
run: |
bash tools/test.sh "$SPEC_TEST"
2020-07-28 20:27:40 +02:00
- name: Deploy
run: |
bash tools/deploy.sh