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 081ae69 commit 32ccf7cCopy full SHA for 32ccf7c
.github/workflows/build.yml
@@ -19,7 +19,7 @@ jobs:
19
shell: bash
20
run: |
21
if [[ "${{ github.event_name }}" == "schedule" ]]; then
22
- tag=builds-$(date +%Y%m%d-%H%M%S)
+ tag=v$(date +%Y%m%d.%H%M%S)
23
else
24
tag=$(basename "${{ github.ref }}")
25
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