ultimate-jekyll-manager 1.6.3 → 1.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -14,6 +14,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
14
14
  - `Fixed` for any bug fixes.
15
15
  - `Security` in case of vulnerabilities.
16
16
 
17
+ ---
18
+ ## [1.6.4] - 2026-06-03
19
+
20
+ ### Fixed
21
+
22
+ - **Workflow template `{ github.secrets }` clobbered `{ github.workflows.build.schedule }`.** Renamed to flat `{ githubSecrets }` key to avoid namespace collision in the template spread.
23
+
17
24
  ---
18
25
  ## [1.6.3] - 2026-06-03
19
26
 
@@ -18,7 +18,7 @@ concurrency:
18
18
  # contents: write
19
19
 
20
20
  env:
21
- { github.secrets }
21
+ { githubSecrets }
22
22
  RUBY_VERSION: '{ versions.ruby }'
23
23
  BUNDLER_VERSION: '{ versions.bundler }'
24
24
  NODE_VERSION: '{ versions.node }'
@@ -40,7 +40,7 @@ const githubSecrets = (() => {
40
40
  .map(l => l.split('=')[0].trim())
41
41
  .map(key => `${key}: \${{ secrets.${key} }}`);
42
42
 
43
- return { github: { secrets: lines.join('\n ') } };
43
+ return { githubSecrets: lines.join('\n ') };
44
44
  })();
45
45
 
46
46
  // File MAP
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultimate-jekyll-manager",
3
- "version": "1.6.3",
3
+ "version": "1.6.4",
4
4
  "description": "Ultimate Jekyll dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {