add CI_COMMIT_TIMESTAMP to version-static file
This commit is contained in:
parent
06aabdf60b
commit
566d164053
|
@ -7,6 +7,7 @@ ENV SRC_DIR=/src/tt-rss/
|
|||
ARG BUILD_TIMESTAMP
|
||||
ARG CI_COMMIT_BRANCH
|
||||
ARG CI_COMMIT_SHORT_SHA
|
||||
ARG CI_COMMIT_TIMESTAMP
|
||||
|
||||
RUN apk add --no-cache dcron php81 php81-fpm php81-phar php81-sockets \
|
||||
php81-pdo php81-gd php81-pgsql php81-pdo_pgsql php81-xmlwriter \
|
||||
|
@ -33,7 +34,7 @@ ADD config.docker.php ${SCRIPT_ROOT}
|
|||
|
||||
COPY --from=app-src . ${SRC_DIR}
|
||||
|
||||
RUN [ ! -z ${BUILD_TIMESTAMP} ] && echo ${BUILD_TIMESTAMP}-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHORT_SHA} | tee ${SRC_DIR}/version_static.txt
|
||||
RUN [ ! -z ${BUILD_TIMESTAMP} ] && echo ${BUILD_TIMESTAMP}-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHORT_SHA} ${CI_COMMIT_TIMESTAMP} | tee ${SRC_DIR}/version-static-official.txt
|
||||
|
||||
ARG ORIGIN_REPO_XACCEL=https://git.tt-rss.org/fox/ttrss-nginx-xaccel.git
|
||||
|
||||
|
|
Loading…
Reference in New Issue