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

69 lines
1.5 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: vendor/bundle
2020-10-03 10:45:17 +02:00
2020-07-28 20:27:40 +02:00
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0 # for posts's lastmod
- name: Setup Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: 2.7
2020-07-28 20:27:40 +02:00
- name: Bundle Caching
uses: actions/cache@v2
2020-07-28 20:27:40 +02:00
with:
2020-10-03 10:45:17 +02:00
path: ${{ env.GEMS_PATH }}
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
2020-07-28 20:27:40 +02:00
restore-keys: |
${{ runner.os }}-gems-
- name: Bundle Install
run: |
bundle config path ${{ env.GEMS_PATH }}
bundle install --jobs 4 --retry 3
2020-07-28 20:27:40 +02:00
- 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 "BASE_URL=$baseurl" >> $GITHUB_ENV
fi
2020-07-28 20:27:40 +02:00
- name: Build Site
env:
JEKYLL_ENV: production
2020-07-28 20:27:40 +02:00
run: |
bundle exec jekyll b -d "_site$BASE_URL"
2020-07-28 20:27:40 +02:00
- name: Test Site
2020-07-28 20:27:40 +02:00
run: |
bash tools/test.sh
2020-07-28 20:27:40 +02:00
- name: Deploy
run: |
if [[ -n $BASE_URL ]]; then
mv _site$BASE_URL _site-rename
rm -rf _site
mv _site-rename _site
fi
2020-07-28 20:27:40 +02:00
bash tools/deploy.sh