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

82 lines
1.9 KiB
Plaintext
Raw Normal View History

2020-07-28 21:27:40 +03:00
name: 'Automatic build'
on:
push:
branches:
- master
paths-ignore:
2020-10-03 11:45:17 +03:00
- .gitignore
- README.md
- LICENSE
2020-07-28 21:27:40 +03:00
jobs:
continuous-delivery:
2020-07-28 21:27:40 +03:00
runs-on: ubuntu-latest
2020-10-03 11:45:17 +03:00
env:
GEMS_PATH: /tmp/bundle
2020-07-28 21:27:40 +03:00
steps:
- uses: actions/setup-ruby@v1
with:
2020-10-03 11:45:17 +03:00
ruby-version: 2.6.x
2020-07-28 21:27:40 +03:00
- name: Install tools
run: |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys CC86BB64
sudo add-apt-repository ppa:rmescandon/yq
sudo apt update
sudo apt install yq -y
2020-07-28 21:27:40 +03: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 11:45:17 +03:00
path: ${{ env.GEMS_PATH }}
2020-07-28 21:27:40 +03:00
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Bundle config
run: |
2020-10-03 11:45:17 +03:00
bundle config path ${{ env.GEMS_PATH }}
2020-07-28 21:27:40 +03: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 21:27:40 +03:00
run: |
baseurl="$(grep '^baseurl:' _config.yml | yq r - baseurl)"
if [[ -n $baseurl ]]; then
echo "SPEC_TEST=_site_no_baseurl" >> $GITHUB_ENV
fi
2020-07-28 21:27:40 +03:00
- name: Build Site
2020-07-28 21:27:40 +03:00
run: |
bash tools/build.sh
2020-07-28 21:27:40 +03:00
if [[ -n $SPEC_TEST ]]; then
# Bypass the defects of htmlproofer
bash tools/build.sh -b "" -d "$SPEC_TEST"
fi
2020-07-28 21:27:40 +03:00
- name: Test Site
2020-07-28 21:27:40 +03:00
run: |
bash tools/test.sh "$SPEC_TEST"
2020-07-28 21:27:40 +03:00
- name: Deploy
run: |
bash tools/deploy.sh