-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (52 loc) · 1.55 KB
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Build and Deploy Website
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Checkout
uses: actions/checkout@v4
- name: Set up dependencies
run: |
pip install -r requirements.txt
- name: Build the project
run: |
pelican content -s publishconf.py
- name: Save Cache
uses: actions/cache/save@v4
with:
key: html-${{ github.sha }}
path: ./output
publish:
name: Publish
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Restore Cache
uses: actions/cache/restore@v4
with:
key: html-${{ github.sha }}
path: ./output
- name: Install Cyberduck CLI
run: |
echo -e "deb https://s3.amazonaws.com/repo.deb.cyberduck.io stable main" | sudo tee /etc/apt/sources.list.d/cyberduck.list > /dev/null
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys FE7097963FEFBE72
sudo apt-get update
sudo apt-get -y install duck
- name: Upload
env:
SFTP_IDENTITY: ${{ secrets.SFTP_IDENTITY }}
run: |
echo "$SFTP_IDENTITY" > private-key.pem
duck -y --username ${{ secrets.SFTP_USER }} --identity private-key.pem --existing compare --upload "${{ secrets.SFTP_URL }}" ./output/*