19 lines
353 B
YAML
19 lines
353 B
YAML
name: Update Website
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: self-hosted
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Update Website
|
|
run: |
|
|
JEKYLL_ENV=production bundle exec jekyll build
|
|
cd _sites/
|
|
sudo cp -R ./* /usr/share/nginx/blueanimates/website/
|