Release 22.0.2

This commit is contained in:
Aloïs Micard
2025-10-06 13:45:47 +02:00
parent f67619af45
commit 8e36c1775d
5 changed files with 4 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ jobs:
build-docker-images: build-docker-images:
strategy: strategy:
matrix: matrix:
dolibarr_version: [ 15.0.3, 16.0.5, 17.0.4, 18.0.8, 19.0.4, 20.0.4, 21.0.4, 22.0.1, develop ] dolibarr_version: [ 15.0.3, 16.0.5, 17.0.4, 18.0.8, 19.0.4, 20.0.4, 21.0.4, 22.0.2, develop ]
runs-on: ubuntu-24.04 runs-on: ubuntu-24.04
steps: steps:
- uses: actions/checkout@v5 - uses: actions/checkout@v5

View File

@@ -13,7 +13,7 @@ FROM ${ARCH}php:8.2-apache-bookworm
# 2025 Renato de Castro Ferreira # 2025 Renato de Castro Ferreira
LABEL maintainer="The Dolibarr foundation <contact@dolibarr.org>" LABEL maintainer="The Dolibarr foundation <contact@dolibarr.org>"
ENV DOLI_VERSION=22.0.1 ENV DOLI_VERSION=22.0.2
ENV DOLI_VERSION_FOR_INIT_DEMO=22.0 ENV DOLI_VERSION_FOR_INIT_DEMO=22.0
ENV DOLI_INSTALL_AUTO=1 ENV DOLI_INSTALL_AUTO=1
ENV DOLI_PROD=1 ENV DOLI_PROD=1

View File

@@ -3,10 +3,10 @@
set -e set -e
# The list of version to build docker packages for # The list of version to build docker packages for
DOLIBARR_VERSIONS=("15.0.3" "16.0.5" "17.0.4" "18.0.8" "19.0.4" "20.0.4" "21.0.4" "22.0.1" "develop") DOLIBARR_VERSIONS=("15.0.3" "16.0.5" "17.0.4" "18.0.8" "19.0.4" "20.0.4" "21.0.4" "22.0.2" "develop")
# The version to use when installing dolibarr/dolibarr:latest # The version to use when installing dolibarr/dolibarr:latest
DOLIBARR_LATEST_TAG="22.0.1" DOLIBARR_LATEST_TAG="22.0.2"
# The version to use to find the dump file for the init of demo with branch "develop" # The version to use to find the dump file for the init of demo with branch "develop"
DOLIBARR_VERSION_FOR_INIT_DEMO="22.0" DOLIBARR_VERSION_FOR_INIT_DEMO="22.0"