-
Notifications
You must be signed in to change notification settings - Fork 0
114 lines (112 loc) · 3.37 KB
/
deploy_workflow.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
name: Deploy Workflow
on:
push:
branches:
- development
- master
jobs:
app-tests:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
extensions: mbstring, bcmath, csv
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install Composer Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
- name: Generate Key
run: php artisan key:generate
- name: Execute tests (Unit and Feature tests) via PHPUnit
env:
DB_PORT: 5432
run: vendor/bin/phpunit
build-js-production:
name: Build JavaScript/CSS for PRODUCTION Server
runs-on: ubuntu-latest
needs: app-tests
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v4
- name: NPM Build
run: |
npm install
npm run prod
- name: Put built assets in Artifacts
uses: actions/upload-artifact@v4
with:
name: assets
path: public
build-js-staging:
name: Build JavaScript/CSS for STAGING Server
runs-on: ubuntu-latest
needs: app-tests
if: github.ref == 'refs/heads/development'
steps:
- uses: actions/checkout@v4
- name: NPM Build
run: |
npm install
npm run dev
- name: Put built assets in Artifacts
uses: actions/upload-artifact@v4
with:
name: assets
path: public
deploy-production:
name: Deploy Project to PRODUCTION Server
runs-on: self-hosted
needs: [build-js-production, app-tests]
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v4
- name: Fetch built assets from Artifacts
uses: actions/download-artifact@v4
with:
name: assets
path: public
- name: Composer install
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
- name: Deploy to Prod
uses: deployphp/action@v1
with:
dep: deploy stage=production
private-key: ${{ secrets.SSH_PRIVATE_KEY_PROD }}
skip-ssh-setup: true
verbosity: -vvv
deploy-development:
name: Deploy Project to DEVELOPMENT Server
runs-on: self-hosted
needs: [build-js-staging, app-tests]
if: github.ref == 'refs/heads/development'
steps:
- uses: actions/checkout@v4
- name: Fetch built assets from Artifacts
uses: actions/download-artifact@v4
with:
name: assets
path: public
- name: Composer install
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
- name: Deploy to Dev
uses: deployphp/action@v1
with:
dep: deploy stage=development
private-key: ${{ secrets.SSH_PRIVATE_KEY_DEV }}
skip-ssh-setup: true
verbosity: -vvv