-
Notifications
You must be signed in to change notification settings - Fork 7
46 lines (40 loc) · 1.05 KB
/
deployTocPanel.yml
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: publish app
on:
workflow_dispatch:
inputs:
logLevel:
description: "Log level"
required: true
default: "warning"
type: choice
options:
- info
- warning
- debug
jobs:
FTP-Deploy-Action:
name: FTP-Deploy-Action
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v4
#- name: Setup PHP
#uses: shivammathur/setup-php@v2
#with:
#php-version: 8.2
#- name: Install Composer dependencies
#run: composer install --prefer-dist --no-interaction
# - name: Use Node.js 16
# uses: actions/setup-node@v3
# with:
# node-version: "16"
# - name: 🔨 Build Project
# run: |
# npm install
# npm run build
- name: FTP-Deploy-Action
uses: SamKirkland/[email protected]
with:
server: ${{ secrets.FTP_SERVER }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}