mirror of
https://github.com/overte-org/community-apps.git
synced 2025-04-05 18:46:30 +02:00
27 lines
584 B
YAML
27 lines
584 B
YAML
name: More repository Deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build_site:
|
|
runs-on: ubuntu-20.04
|
|
|
|
name: Deploy "More" repository
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Deploy More repository
|
|
uses: SamKirkland/FTP-Deploy-Action@4.2.0
|
|
with:
|
|
server: ftp.tuxfamily.org
|
|
username: ${{ secrets.GHA_MORE_FTP_USER }}
|
|
password: ${{ secrets.GHA_MORE_FTP_PASS }}
|
|
local-dir: ./
|
|
server-dir: overte/more.overte.org-web/htdocs/
|
|
exclude: |
|
|
**/staging/**
|
|
**/.*
|
|
**/.*/**
|