webseite/.github/workflows/lektor-deploy.yml

55 lines
1.5 KiB
YAML
Raw Normal View History

name: Build and Deploy c3woc website
on:
2020-07-23 00:50:29 +02:00
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '42 0 * * 0'
push:
branches:
- master
# Environment variables available to all jobs and steps in this workflow
env:
LEKTOR_DEPLOY_KEY: ${{ secrets.LEKTOR_DEPLOY_KEY }}
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Cache lfs data
uses: actions/cache@v1
with:
path: .git
key: .git/lfs
- name: install git-lfs && lektor
run: |
sudo apt-get install git-lfs
2020-02-07 14:35:05 +01:00
make install
- name: Cache lektor .cache
uses: actions/cache@v1
with:
path: ~/.cache/lektor
key: lektorcache
- name: pull lfs data
run: git lfs pull
- name: build with lektor
run: |
2020-02-07 14:35:05 +01:00
make build
- name: deploy new site
run: |
echo 'c3woc.de ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBC5NslYj+wtriBuKIxJfDRm9E2hnlstWR8durQ6pKvVvP7wjcoXIyAxe41GvJ9SoEhSjF7oVlzlw+zAkzl5WOZ4=' | sudo tee /etc/ssh/ssh_known_hosts
lektor deploy --key $LEKTOR_DEPLOY_KEY c3woc