Skip to content

Commit 8ede647

Browse files
committed
Merge tag '1.8.1' into develop
no message
2 parents 3ffe9eb + 4f10784 commit 8ede647

3 files changed

Lines changed: 12 additions & 1 deletion

File tree

.github/workflows/github_build_release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,15 @@ jobs:
2323
docker network create frontend
2424
docker compose run --rm --user=root --env APP_ENV=prod phpfpm composer install --no-dev -o --classmap-authoritative
2525
docker compose run --rm --user=root --env APP_ENV=prod phpfpm composer clear-cache
26+
docker compose run --rm node yarn install
27+
docker compose run --rm node yarn build
2628
2729
- name: Make assets dir
2830
run: |
2931
mkdir -p ../assets
3032
3133
- name: Create archive
32-
run: tar -zcf --exclude='.git' ../assets/${{ github.event.repository.name }}-${{ github.ref_name }}.tar.gz ./
34+
run: tar --exclude='.git' --exclude='node_modules' -zcf ../assets/${{ github.event.repository.name }}-${{ github.ref_name }}.tar.gz ./
3335

3436
- name: Create checksum
3537
run: |

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.8.1] - 2025-02-06
11+
12+
- Increase memory for supervisor container
13+
1014
## [1.8.0] - 2025-02-06
1115

1216
- Upgrade to PHP 8.4
@@ -16,6 +20,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1620
- Refactor rootDir normalization to ensure values are always normalized, fix type errors,
1721
- Fix various values not being set
1822

23+
## [1.7.1] - 2024-11-08
24+
25+
- Added automatic deployment
26+
1927
## [1.7.0] - 2024-10-14
2028

2129
- Switch to using vault bundle

docker-compose.server.override.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ services:
2020
- APP_SUPERVISOR_COMMAND=/app/bin/console messenger:consume --env=prod --no-debug --time-limit=900 --failure-limit=1 async
2121
- APP_SUPERVISOR_WORKERS=1
2222
- APP_SUPERVISOR_USER=deploy
23+
- PHP_MEMORY_LIMIT=256M
2324
networks:
2425
- app
2526
extra_hosts:

0 commit comments

Comments
 (0)