Added release.json generation to builds#2
Merged
tuj merged 39 commits intofeature/3x-github-packagesfrom Apr 13, 2026
Merged
Conversation
…ltiple simultaneous fetches. Unified admin and config release loader
turegjorup
requested changes
Mar 31, 2026
|
|
||
| - name: Create release file | ||
| run: | | ||
| printf "{\n \"releaseTimestamp\": $(date +%s),\n \"releaseTime\": \"$(date)\",\n \"releaseVersion\": \"${{ github.ref_name }}\"\n}" > public/release.json |
There was a problem hiding this comment.
We should run name: Set release timestamp first, then use those values here. Otherwise we get slightly different timestamps.
|
|
||
| ARG APP_VERSION="develop" | ||
| ARG APP_RELEASE_TIMESTAMP=0 | ||
| ARG APP_RELEASE_TIME="" |
There was a problem hiding this comment.
Could we do default values similar to
--build-arg APP_RELEASE_TIME="$(date)" \
--build-arg APP_RELEASE_TIMESTAMP="$(date +%s)" \
Author
There was a problem hiding this comment.
ARG will not execute $(date), it will just be interpreted as a string.
So will stick to existing code...
turegjorup
approved these changes
Apr 9, 2026
…collections Set fetch: extra lazy on all collections doctrine associations
…splay-api-service into feature/list-optimizations
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Inner promises in the onClick chain were not returned, so rejections from getAllScreenGroupCampaigns, getAllPages (screen campaigns), or getAllCampaigns never reached the outer .catch() handler — leaving the button stuck in a loading state permanently on network errors. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…zations List optimizations
…tions-checksum-listener-test Fixed relations checksum test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Link to issue
os2display#371
Link to ticket
https://leantime.itkdev.dk/#/tickets/showTicket/6871
Description
Adds release.json generation to builds.
Builds on:
https://github.com/os2display/display-client/blob/develop/.github/workflows/github_build_release.yml#L28
https://github.com/os2display/display-client/blob/develop/infrastructure/itkdev/run.sh#L10
https://github.com/os2display/display-client/blob/develop/infrastructure/itkdev/Dockerfile#L44
https://github.com/os2display/display-client/blob/develop/.github/workflows/itkdev_docker_build_develop.yml#L36
Checklist