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 15f28b9 commit 4be1e1bCopy full SHA for 4be1e1b
.github/workflows/promote-staging-to-production.yml
@@ -36,11 +36,12 @@ jobs:
36
run: |
37
# Get the current date in YYYY-MM-DD format
38
RELEASE_DATE=$(date '+%Y-%m-%d')
39
+ TIMESTAMP=$(date '+%H%M')
40
41
# Create a release tag
- RELEASE_TAG="production-${RELEASE_DATE}"
42
+ RELEASE_TAG="production-${RELEASE_DATE}-${TIMESTAMP}"
43
44
# Create GitHub release
45
gh release create "${RELEASE_TAG}" \
- --title "Production Release ${RELEASE_DATE}" \
46
- --notes "🚀 Production deployment on ${RELEASE_DATE}"
+ --title "Production Release ${RELEASE_DATE} ${TIMESTAMP}" \
47
+ --notes "🚀 Production deployment on ${RELEASE_DATE} at ${TIMESTAMP}"
0 commit comments