Skip to content

Commit 32ccf7c

Browse files
committed
Use a version-like tag name for correct release ordering
1 parent 081ae69 commit 32ccf7c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
shell: bash
2020
run: |
2121
if [[ "${{ github.event_name }}" == "schedule" ]]; then
22-
tag=builds-$(date +%Y%m%d-%H%M%S)
22+
tag=v$(date +%Y%m%d.%H%M%S)
2323
else
2424
tag=$(basename "${{ github.ref }}")
2525
fi

trigger.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
2-
tag=builds-$(date +%Y%m%d-%H%M%S)
2+
tag=v$(date +%Y%m%d.%H%M%S)
33
git tag "$tag"
44
git push origin "$tag"

0 commit comments

Comments
 (0)