-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (40 loc) · 988 Bytes
/
Copy pathci.yml
File metadata and controls
43 lines (40 loc) · 988 Bytes
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
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: |
npm ci
npm run build
composer install --no-dev
- uses: SamKirkland/FTP-Deploy-Action@v4.4.0
with:
exclude: |
**/.git*
**/.git*/**
**/node_modules/**
**/resources/stylus/**
**/src/**
**/tests/**
.editorconfig
.env
.npmrc
biome.json
composer.*
mago.toml
package-lock.json
package.json
phpunit.*
log-level: minimal
password: ${{ secrets.ftp_password }}
port: ${{ secrets.ftp_port }}
server: ${{ secrets.ftp_server }}
server-dir: htdocs/licosys/
username: ${{ secrets.ftp_username }}
on:
pull_request:
branches: ['stable']
push:
branches: ['stable']
permissions:
contents: read