website/.forgejo/workflows/publish.yaml
Peter Tillemans 9dc90b1cf7
Some checks failed
/ build (push) Failing after 11s
update to 0.19.1
2024-08-02 09:53:18 +02:00

22 lines
596 B
YAML

on: [push]
jobs:
build:
runs-on: docker
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- uses: https://github.com/taiki-e/install-action@v2
with:
tool: zola@0.19.1
- run: zola build
- name: copy file via ssh password
uses: https://github.com/appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
source: "public/*"
target: "/usr/share/nginx/snamellit/"
strip_components: 1