28 lines
760 B
YAML
28 lines
760 B
YAML
---
|
|
name: ci
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build_and_publish:
|
|
runs-on: docker
|
|
container:
|
|
image: ghcr.io/catthehacker/ubuntu:runner-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
- uses: actions/setup-node@v4
|
|
- name: Setup Hugo
|
|
uses: https://guardianproject.dev/actions/actions-hugo@v3
|
|
with:
|
|
hugo-version: '0.154.3'
|
|
extended: true
|
|
- run: hugo
|
|
- run: npm install -g bnycdn sass
|
|
- run: bnycdn key set default ${{ secrets.BUNNY_API }}
|
|
- run: bnycdn key set sr2pro ${{ secrets.BUNNY_FTP_PASSWORD }} --type=storages
|
|
- run: bnycdn cp -R -s sr2pro ./public /sr2pro/
|
|
- run: bnycdn pz purge -t www.sr2pro.uk
|