-
Notifications
You must be signed in to change notification settings - Fork 11
118 lines (104 loc) · 3.35 KB
/
release-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
115
116
117
118
name: Release workflow
on:
release:
types: [published]
jobs:
main:
name: Build release
runs-on: ubuntu-latest
strategy:
matrix:
include:
- php_version: "5.6"
composer: "composer-v5.json"
- php_version: "7.0"
composer: "composer-v5.json"
- php_version: "7.1"
composer: "composer-v5.json"
- php_version: "7.2"
composer: "composer-v5.json"
- php_version: "7.3"
composer: "composer-v5.json"
- php_version: "7.4"
composer: "composer-v5.json"
- php_version: "8.0"
composer: "composer.json"
- php_version: "8.1"
composer: "composer.json"
- php_version: "8.2"
composer: "composer.json"
- php_version: "8.3"
composer: "composer.json"
env:
COMPOSER: ${{ matrix.composer }}
steps:
- uses: actions/checkout@v3
- name: Setup PHP ${{ matrix.php_version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_version }}
- uses: actions/setup-python@v4
with:
python-version: 3.11
- run: pip install pre-commit
- uses: ramsey/composer-install@v2
with:
composer-options: "--no-dev --optimize-autoloader --ignore-platform-reqs"
- run: yarn install
- name: Transpile to PHP ${{ matrix.php_version }}
run: |
docker run \
--rm \
--env PHP_VERSION=${{ matrix.php_version }} \
-v $(pwd):/project \
budziam/rector:0.12.23 \
process \
/project/includes \
--config /project/rector.php
- run: yarn build
env:
NODE_ENV: production
- run: ./remove_unnecessary_files.sh
- run: pre-commit run --all-files || true
- name: Save build version
run: sed -i "s/BUILD=.*/BUILD=php${{ matrix.php_version }}/" ./confidential/.meta
- name: Change file permissions
run: chmod 777 confidential/ data/ data/cache/ data/logs/ data/transactions/
- id: build_artifact
run: |
zip -r \
--exclude='data/cache/**' \
--exclude='data/errors/**' \
--exclude='data/transactions/**' \
${BUILD_NAME} \
build/ \
bootstrap/ \
confidential/ \
data/ \
includes/ \
migrations/ \
translations/ \
themes/ \
vendor/ \
.htaccess \
favicon.png \
index.php \
README.md
echo "{ARTIFACT_PATH}={./$BUILD_NAME}" >> $GITHUB_OUTPUT
echo "{ARTIFACT_NAME}={$BUILD_NAME}" >> $GITHUB_OUTPUT
env:
BUILD_NAME: build-${{ matrix.php_version }}.zip
- name: Get release
id: get_release
uses: bruceadams/get-release@v1.3.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Release Asset
uses: actions/upload-release-asset@v1.0.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: ${{ steps.build_artifact.outputs.ARTIFACT_PATH }}
asset_name: ${{ steps.build_artifact.outputs.ARTIFACT_NAME }}
asset_content_type: application/zip