You've already forked CS-Box
28 lines
586 B
YAML
28 lines
586 B
YAML
name: Publish
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- ./export
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: SFTP upload
|
|
uses: Dylan700/sftp-upload-action@v1.2.3
|
|
with:
|
|
server: sagittarius.premium.hostns.io
|
|
username: adcmnetworks
|
|
key: ${{secrets.key}}
|
|
port: 22
|
|
uploads: |
|
|
./export => /home/adcmnetworks/csbox
|
|
delete: 'true'
|
|
ignore: |
|
|
*.git
|
|
*/**/*git* |