website/.forgejo/workflows/demo.yaml
Peter Tillemans 88ad292d2c
All checks were successful
/ build (push) Successful in -1m57s
strip public folder name from copied files
2024-06-12 16:22:37 +02:00

22 lines
597 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.17.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