-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (38 loc) · 1.11 KB
/
release_linklub.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Prod release - Linklub
on:
push:
branches:
- prod
workflow_dispatch:
jobs:
deploy-ftp:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.2"
tools: composer:v2
- name: Composer install
run: composer install --prefer-dist --no-progress --no-suggest --no-dev --optimize-autoloader
- name: Enable https
run: sed -i 's/#https //g' .htaccess
- name: Sync files with FTP
uses: SamKirkland/[email protected]
with:
server: ${{ secrets.FTP_SERVER }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
server-dir: ./webapp/
# WARNING - keep in sync with .rsync_filter
exclude: |
**/.*
**/.*/**
**/tests/**
- name: Migration hook
uses: fjogeleit/http-request-action@v1
with:
url: ${{ secrets.HOOK_MIGRATION_URL_LINKLUB }}
method: "GET"