-
-
Notifications
You must be signed in to change notification settings - Fork 164
131 lines (102 loc) · 3.38 KB
/
build-package.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
name: Build Release Package
on:
push:
branches:
- 1.x
jobs:
build-js:
name: Build assets for the package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Reconfigure Git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf
ssh://git@github.com/
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Try to build the assets
run: |
npm ci
npm run production
- name: Upload built assets
uses: actions/upload-artifact@v4
with:
name: assets
path: public/assets/dist
- name: Upload mix manifest
uses: actions/upload-artifact@v4
with:
name: mix-manifest
path: public/mix-manifest.json
build-package:
name: Build final dist package
runs-on: ubuntu-latest
needs: build-js
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: assets
path: public/assets/dist
- uses: actions/download-artifact@v4
with:
name: mix-manifest
path: public
- uses: shivammathur/setup-php@v2
with:
php-version: 8.1
extensions: mbstring
- id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Prepare the environment
run: cp .env.example .env
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest --no-dev
- name: Publish package configuration
run: 'php artisan vendor:publish --provider="Spatie\Backup\BackupServiceProvider"'
- name: Remove .env file
run: rm .env
- uses: thedoctor0/zip-release@master
with:
filename: linkace.zip
exclusions: '*.git*'
- uses: actions/upload-artifact@v4
with:
name: linkace-package
path: linkace.zip
build-package-docker:
name: Build final dist package for Docker setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Rename files
run: |
mv .env.docker.production .env
chmod 0666 .env
mv docker-compose.production-simple.yml docker-compose.yml
- uses: montudor/action-zip@v1
with:
args: zip -qq linkace-package-docker-simple.zip docker-compose.yml .env LICENSE.md README.md
- uses: actions/upload-artifact@v4
with:
name: linkace-docker-simple
path: linkace-package-docker-simple.zip
- name: Rename files
run: mv docker-compose.production.yml docker-compose.yml
- uses: montudor/action-zip@v1
with:
args: zip -qq linkace-package-docker-advanced.zip docker-compose.yml .env nginx.conf nginx-ssl.conf LICENSE.md README.md
- uses: actions/upload-artifact@v4
with:
name: linkace-docker-advanced
path: linkace-package-docker-advanced.zip