28 lines
No EOL
584 B
YAML
28 lines
No EOL
584 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
- main
|
|
name: Publish Website
|
|
jobs:
|
|
web-deploy:
|
|
name: Deploy based on branch
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: SFTP upload
|
|
uses: Dylan700/sftp-upload-action@latest
|
|
with:
|
|
server: ${{secrets.SYNADDR}}
|
|
username: ${{secrets.SYNUSR}}
|
|
password: ${{secrets.SYNPASS}}
|
|
port: 22
|
|
uploads: |
|
|
./ => ./Lantaeu/dtch_dev
|
|
ignore: |
|
|
*.git
|
|
*/**/*git*
|
|
*.json
|
|
config.php |