2020-07-28 21:27:40 +03:00
|
|
|
name: 'Automatic build'
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2022-03-12 17:29:15 +03:00
|
|
|
- master
|
2020-07-28 21:27:40 +03:00
|
|
|
paths-ignore:
|
2020-10-03 11:45:17 +03:00
|
|
|
- .gitignore
|
|
|
|
- README.md
|
|
|
|
- LICENSE
|
2020-07-28 21:27:40 +03:00
|
|
|
|
|
|
|
jobs:
|
2020-09-16 20:28:44 +03:00
|
|
|
continuous-delivery:
|
2020-10-07 18:53:05 +03:00
|
|
|
|
2020-07-28 21:27:40 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
2020-11-22 20:26:29 +03:00
|
|
|
fetch-depth: 0 # for posts's lastmod
|
|
|
|
|
|
|
|
- name: Setup Ruby
|
2021-03-31 23:17:18 +03:00
|
|
|
uses: ruby/setup-ruby@v1
|
2020-11-22 20:26:29 +03:00
|
|
|
with:
|
2020-12-06 18:12:20 +03:00
|
|
|
ruby-version: 2.7
|
2021-03-31 23:17:18 +03:00
|
|
|
bundler-cache: true
|
2020-07-28 21:27:40 +03:00
|
|
|
|
|
|
|
- name: Deploy
|
2021-09-28 17:22:36 +03:00
|
|
|
run: bash tools/deploy.sh
|