updated history template
This commit is contained in:
@@ -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:
|
||||||
|
|||||||
@@ -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 %}
|
||||||
|
|||||||
Reference in New Issue
Block a user