Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion .github/scripts/release-meta.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@ export function computeNightlyVersion(baseVersion, timestamp = new Date()) {
const d = String(timestamp.getUTCDate()).padStart(2, '0');
const h = String(timestamp.getUTCHours()).padStart(2, '0');
const min = String(timestamp.getUTCMinutes()).padStart(2, '0');
const sec = String(timestamp.getUTCSeconds()).padStart(2, '0');

const [, major, minor, patch] = match;
return `${major}.${minor}.${Number(patch) + 1}-nightly.${y}${m}${d}${h}${min}`;
// Second resolution so same-minute commits get distinct build versions.
return `${major}.${minor}.${Number(patch) + 1}-nightly.${y}${m}${d}${h}${min}${sec}`;
}

export function nightlyVersion() {
Expand Down
1 change: 1 addition & 0 deletions altstore-source.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "Sable",
"identifier": "moe.sable.client.source",
Comment thread
hazre marked this conversation as resolved.
"subtitle": "Sable for iOS",
"description": "Sable iOS nightly builds for AltStore and SideStore.",
"iconURL": "https://raw.githubusercontent.com/SableClient/Sable/dev/src-tauri/icons/icon.png",
Expand Down
Loading