Skip to content

Merge pull request #622 from gzm0/release-1.15.0 #71

Merge pull request #622 from gzm0/release-1.15.0

Merge pull request #622 from gzm0/release-1.15.0 #71

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.5
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Build
run: bundle exec jekyll build
- name: Deploy
uses: burnett01/[email protected]
with:
switches: -avz
path: _site/
remote_path: www/
remote_host: ${{ secrets.DEPLOY_HOST }}
remote_user: ${{ secrets.DEPLOY_USER }}
remote_key: ${{ secrets.DEPLOY_KEY }}