Files
karlderheinz.tv/.github/workflows/build.yml
T
2026-08-22 01:13:17 +02:00

29 lines
809 B
YAML

name: Build & Deploy
on:
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
workflow_dispatch:
jobs:
build-and-copy:
runs-on: ac2d5498d5b2
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build
run: |
echo "replace with your actual build command"
# e.g. npm ci && npm run build / make all
- name: Copy build output to FTP server
uses: SamKirkland/FTP-Deploy-Action@4.2.0
with:
server: 82.165.141.176 # LAN IP of the box running your FTP server
username: ${{ secrets.FTP_USER }}
password: ${{ secrets.FTP_PASS }}
local-dir: dist/ # where your build output lands
remote-dir: /dev.karlderheinz.tv/ # target dir on the FTP server