Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/promote-staging-to-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,12 @@ jobs:
run: |
# Get the current date in YYYY-MM-DD format
RELEASE_DATE=$(date '+%Y-%m-%d')
TIMESTAMP=$(date '+%H%M')

# Create a release tag
RELEASE_TAG="production-${RELEASE_DATE}"
RELEASE_TAG="production-${RELEASE_DATE}-${TIMESTAMP}"

# Create GitHub release
gh release create "${RELEASE_TAG}" \
--title "Production Release ${RELEASE_DATE}" \
--notes "🚀 Production deployment on ${RELEASE_DATE}"
--title "Production Release ${RELEASE_DATE} ${TIMESTAMP}" \
--notes "🚀 Production deployment on ${RELEASE_DATE} at ${TIMESTAMP}"