2 Commits

Author SHA1 Message Date
d11131d9b2 chore(version): bump version to 0.3.5
All checks were successful
Auto Changelog & Release / release (push) Successful in 8s
2025-06-29 13:49:17 +02:00
e5f5084931 feat(action): integrate gha-timer for step timing
- Adds gha-timer to measure and log execution time for steps
- Improves visibility into step outcomes with success/failure logging
- Enhances debugging and performance analysis capability
2025-06-29 13:49:17 +02:00
2 changed files with 13 additions and 1 deletions

View File

@@ -1 +1 @@
0.3.4
0.3.5

View File

@@ -18,6 +18,8 @@ inputs:
runs:
using: "composite"
steps:
- uses: fulcrumgenomics/gha-timer@v1
- name: Detect version change
shell: bash
id: detect
@@ -26,7 +28,17 @@ runs:
GITHUB_SHA: ${{ github.sha || '' }}
GITHUB_REF: ${{ github.ref || '' }}
run: |
gha-timer start --name "Detect Version Change"
${{ github.action_path }}/scripts/detect-version-change.sh
exit_code=$?
if [[ $exit_code -eq 0 ]]; then
gha-timer elapsed --outcome success --name "Detect Version Change"
else
gha-timer elapsed --outcome failure --name "Detect Version Change"
exit $exit_code
fi
- name: Read CLIFF_VERSION
shell: bash