We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01c10dd commit 306d0f1Copy full SHA for 306d0f1
.github/workflows/build.yml
@@ -18,7 +18,7 @@ jobs:
18
id: create_tag
19
run: |
20
if [[ "${{ github.event_name }}" == "schedule" ]]; then
21
- tag=builds-$(date +%Y%m%d-%H%M%S)
+ tag=v$(date +%Y%m%d.%H%M%S)
22
else
23
tag=$(basename "${{ github.ref }}")
24
fi
trigger.sh
@@ -1,4 +1,4 @@
1
#!/bin/sh
2
-tag=builds-$(date +%Y%m%d-%H%M%S)
+tag=v$(date +%Y%m%d.%H%M%S)
3
git tag "$tag"
4
git push origin "$tag"
0 commit comments