updated history template
All checks were successful
FHIR IG CI/CD Pipeline with Version Persistence / build-ig (push) Successful in 5m40s
FHIR IG CI/CD Pipeline with Version Persistence / deploy (push) Successful in 8s

This commit is contained in:
2026-03-07 04:58:21 +06:00
parent 83ad838fc4
commit 18f71a6a04
2 changed files with 5 additions and 6 deletions

View File

@@ -2,7 +2,6 @@ name: FHIR IG CI/CD Pipeline with Version Persistence
on: on:
push: push:
branches: [ main, develop ]
tags: tags:
- 'v*.*.*' # Trigger on version tags like v0.3.0 - 'v*.*.*' # Trigger on version tags like v0.3.0
pull_request: pull_request:

View File

@@ -18,14 +18,14 @@
</thead> </thead>
<tbody> <tbody>
{% for entry in site.data['package-list'].list %} {% for entry in site.data['package-list'].list %}
{% unless entry.version == 'current' %} {% if entry.version != 'current' %}
<tr> <tr>
<td><a href="{{entry.path}}"><b>{{entry.version}}</b></a></td> <td><a href="{{entry.path}}"><b>{{entry.version}}</b></a></td>
<td>{{entry.date | default: 'N/A'}}</td> <td>{{entry.date}}</td>
<td><span class="badge">{{entry.status | default: 'unknown'}}</span></td> <td>{{entry.status}}</td>
<td>{{entry.desc}}</td> <td>{{entry.desc}}</td>
</tr> </tr>
{% endunless %} {% endif %}
{% endfor %} {% endfor %}
</tbody> </tbody>
</table> </table>
@@ -34,7 +34,7 @@
{% for entry in site.data['package-list'].list %} {% for entry in site.data['package-list'].list %}
{% if entry.version == 'current' %} {% if entry.version == 'current' %}
<div style="background-color: #f8f9fa; padding: 10px; border-left: 5px solid #007bff; margin-top: 10px;"> <div style="background-color: #f8f9fa; padding: 10px; border-left: 5px solid #007bff; margin-top: 10px;">
<p>Latest development build: <a href="{{entry.path}}">{{entry.path}}</a></p> <p>Latest development build is available at: <a href="{{entry.path}}">{{entry.path}}</a></p>
</div> </div>
{% endif %} {% endif %}
{% endfor %} {% endfor %}