File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,8 +2,7 @@ name: Build with Tag
22
33on :
44 push :
5- branches :
6- - main
5+
76# on:
87# push:
98# tags:
@@ -23,13 +22,19 @@ jobs:
2322 version : 10
2423 run_install : false
2524
26- - name : Set up PHP
27- uses : shivammathur/setup-php@v2
28- with :
29- php-version : ' 8.2'
30-
31- - name : Install Composer dependencies
32- run : composer install --no-interaction --prefer-dist --optimize-autoloader
25+ # - name: Set up PHP
26+ # uses: shivammathur/setup-php@v2
27+ # with:
28+ # php-version: '8.2'
29+ #
30+ # - name: Install Composer dependencies
31+ # run: composer install --no-interaction --prefer-dist --optimize-autoloader
3332
3433 - name : Build assets
35- run : pnpm run build
34+ run : cd themes/user/app; pnpm install; pnpm run build;
35+
36+ - name : Archive build artifacts
37+ run : |
38+ grep composer.json | xargs rm
39+ grep composer.lock | xargs rm
40+ zip -r ../release.zip .
You can’t perform that action at this time.
0 commit comments