We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a387624 commit 694cd16Copy full SHA for 694cd16
.github/workflows/cmake-win64.yml
@@ -26,9 +26,12 @@ jobs:
26
27
- name: Get the version
28
id: get_version
29
+ continue-on-error: true
30
run: |
31
$git_info=$(git describe --tags HEAD)
32
+ $stamp=$(date +'%Y-%m-%d_%H%M%S')
33
echo "version=${git_info}" >> $env:GITHUB_OUTPUT
34
+ echo "stamp=${stamp}" >> $env:GITHUB_OUTPUT
35
36
- name: Setup Installation Location
37
@@ -107,7 +110,7 @@ jobs:
107
110
- name: Upload Build Results
108
111
uses: actions/upload-artifact@v4
109
112
with:
- name: tesseract-${{ steps.get_version.outputs.version }}-VS2019_win64
113
+ name: tesseract-${{ steps.get_version.outputs.version }}-${{steps.get_version.outputs.stamp}}-VS2019_win64
114
path: ${{env.ILOC}}
115
retention-days: 5
116
0 commit comments