website/.forgejo/workflows/publish.yaml
Peter Tillemans 49244b13f3
All checks were successful
/ build (push) Successful in 12s
remove version from zola
2024-08-02 10:14:02 +02:00

22 lines
589 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
- 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