mirror of
https://github.com/AleziaKurdis/Overte-community-apps.git
synced 2025-04-05 14:02:21 +02:00
Initial automatic deployment workflow
This commit is contained in:
parent
8764200603
commit
d4abc0d6e5
2 changed files with 28 additions and 0 deletions
27
.github/workflows/master_deploy.yml
vendored
Normal file
27
.github/workflows/master_deploy.yml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
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/**
|
||||||
|
**/.*
|
||||||
|
**/.*/**
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
.secrets
|
Loading…
Reference in a new issue