Skip to content

Commit 2508dbc

Browse files
authored
Merge pull request #98 from DeterminateSystems/push-tkvopvqywwnn
Add a specific hard-coded tag for v25.05
2 parents 37ee020 + caea20f commit 2508dbc

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

dist/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82572,7 +82572,9 @@ var STABLE_TAG_NAME_REFS = {
8257282572
// `branch-off-yy.mm` is a surprising name, but is the pattern identified in the documentation.
8257382573
//
8257482574
// See: https://github.com/NixOS/release-wiki/pull/90
82575-
"24.11": "tags/branch-off-24.11"
82575+
"24.11": "tags/branch-off-24.11",
82576+
// It appears that https://github.com/NixOS/release-wiki/pull/90 was not followed for 25.05
82577+
"25.05": "tags/25.05"
8257682578
};
8257782579
var FlakeHubMirrorAction = class {
8257882580
constructor() {

src/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ const STABLE_TAG_NAME_REFS: { [key: string]: string } = {
3636
//
3737
// See: https://github.com/NixOS/release-wiki/pull/90
3838
"24.11": "tags/branch-off-24.11",
39+
// It appears that https://github.com/NixOS/release-wiki/pull/90 was not followed for 25.05
40+
"25.05": "tags/25.05",
3941
};
4042

4143
class FlakeHubMirrorAction {
@@ -88,7 +90,7 @@ export async function getRollingMinor(
8890
if (STABLE_TAG_NAME_REFS[versionPart]) {
8991
expectedRef = STABLE_TAG_NAME_REFS[versionPart];
9092
} else {
91-
// See: https://github.com/NixOS/release-wiki/pull/90
93+
// See: https://github.com/NixOS/release-wiki/pull/90 which is still current policy
9294
expectedRef = `tags/branch-off-${versionPart}`;
9395
}
9496

0 commit comments

Comments
 (0)