@omnidist/omnidist-linux-x64 0.1.22 → 0.1.23
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/README.md +10 -4
- package/bin/omnidist +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -79,7 +79,8 @@ omnidist init
|
|
|
79
79
|
This creates:
|
|
80
80
|
- `.omnidist/omnidist.yaml`
|
|
81
81
|
- `.omnidist/` workspace directories
|
|
82
|
-
|
|
82
|
+
|
|
83
|
+
`omnidist init` writes profiles-mode config with a `default` profile.
|
|
83
84
|
|
|
84
85
|
3. Edit config and set environment variables (optional):
|
|
85
86
|
|
|
@@ -95,7 +96,8 @@ $EDITOR .omnidist/omnidist.yaml
|
|
|
95
96
|
omnidist build
|
|
96
97
|
```
|
|
97
98
|
|
|
98
|
-
This also writes the resolved build version to `.omnidist
|
|
99
|
+
This also writes the resolved build version to `.omnidist/<profile>/dist/VERSION`
|
|
100
|
+
(`.omnidist/default/dist/VERSION` with init defaults).
|
|
99
101
|
|
|
100
102
|
5. Stage and verify artifacts:
|
|
101
103
|
|
|
@@ -105,8 +107,9 @@ omnidist verify
|
|
|
105
107
|
```
|
|
106
108
|
|
|
107
109
|
`omnidist uv stage` converts the resolved version to PEP 440 and writes
|
|
108
|
-
`.omnidist
|
|
109
|
-
It also recreates `.omnidist
|
|
110
|
+
`.omnidist/<profile>/uv/pyproject.toml` with that version.
|
|
111
|
+
It also recreates `.omnidist/<profile>/uv/dist` to prevent stale wheel artifacts from previous runs.
|
|
112
|
+
On first stage run, omnidist creates `.omnidist/.gitignore` (if missing).
|
|
110
113
|
|
|
111
114
|
6. Publish when verification passes:
|
|
112
115
|
|
|
@@ -186,6 +189,9 @@ UV_PUBLISH_TOKEN=pypi-xxx
|
|
|
186
189
|
|
|
187
190
|
`.omnidist/omnidist.yaml`:
|
|
188
191
|
|
|
192
|
+
`omnidist init` now generates the profiles-mode shape (`profiles.default`) by default.
|
|
193
|
+
Legacy top-level format remains supported when loading config files.
|
|
194
|
+
|
|
189
195
|
```yaml
|
|
190
196
|
tool:
|
|
191
197
|
name: omnidist
|
package/bin/omnidist
CHANGED
|
Binary file
|
package/package.json
CHANGED