Skip to content

fix (page): update content #112

fix (page): update content

fix (page): update content #112

Workflow file for this run

name: Jekyll site CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@master
with:
ruby-version: '2.7'
- name: Setup
run: bundle install
- name: Build
run: JEKYLL_ENV=production bundle exec jekyll build
- uses: actions/upload-artifact@master
with:
name: build
path: _site
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@master
with:
name: build
path: _site
- name: Deploy
uses: mickael-kerjean/gh-action-rsync@master
env:
HOST: ${{secrets.SSH_HOSTNAME}}
USER: ${{secrets.SSH_USERNAME}}
KEY: ${{secrets.SSH_PRIVATE_KEY}}
TARGET: /mnt/me-kerjean-pages/projects/filestash/website/
VERBOSE: true
ARGS: -av --delete
SSH_ARGS: '-p 22 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no'
SOURCE: _site/