Skip to content
This repository was archived by the owner on Feb 15, 2026. It is now read-only.

Commit bf8cbb1

Browse files
KemingHegithub-actions[bot]
authored andcommitted
docs(src/assets/): update pixi official documentation
1 parent 5030c11 commit bf8cbb1

40 files changed

Lines changed: 353 additions & 17 deletions

src/assets/pixi/_metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"source_repo": "prefix-dev/pixi",
33
"docs_path": "docs",
4-
"updated_at": "2025-12-02T22:05:47Z",
5-
"commit_sha": "9cfcecf4218fb4b2dda8fbbd70c367a1965c6427"
4+
"updated_at": "2025-12-09T22:06:22Z",
5+
"commit_sha": "4fab35080f6422c4c278f9eb593f41cf9321bd92"
66
}

src/assets/pixi/deployment/s3.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,20 @@ force-path-style = false
234234

235235
## Uploading to S3
236236

237-
You can upload to S3 using `rattler-build upload s3`.
238-
For more information, see [rattler-build's documentation](https://rattler.build/latest/authentication_and_upload/#s3).
237+
You can upload packages to S3 using `pixi upload s3`:
238+
239+
```bash
240+
pixi upload s3 \
241+
--bucket my-s3-bucket \
242+
--channel my-channel \
243+
--region us-east-1 \
244+
--endpoint-url https://my-s3-host \
245+
my_package.conda
246+
```
247+
248+
Use `pixi upload s3 --help` for all available options.
249+
250+
When using `rattler-build` to build a `.conda` package you can also use `rattler-build upload s3`: for more information, see [rattler-build's documentation](https://rattler-build.prefix.dev/latest/authentication_and_upload/#s3).
239251

240252
### Re-indexing S3 buckets After Uploading new Packages
241253

src/assets/pixi/integration/ci/github_actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ We created [prefix-dev/setup-pixi](https://github.com/prefix-dev/setup-pixi) to
1010
```yaml
1111
- uses: prefix-dev/setup-pixi@v0.9.2
1212
with:
13-
pixi-version: v0.59.0
13+
pixi-version: v0.61.0
1414
cache: true
1515
auth-host: prefix.dev
1616
auth-token: ${{ secrets.PREFIX_DEV_TOKEN }}

src/assets/pixi/integration/editor/vscode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Then, create the following two files in the `.devcontainer` directory:
2828
```dockerfile title=".devcontainer/Dockerfile"
2929
FROM mcr.microsoft.com/devcontainers/base:jammy
3030

31-
ARG PIXI_VERSION=v0.59.0
31+
ARG PIXI_VERSION=v0.61.0
3232

3333
RUN curl -L -o /usr/local/bin/pixi -fsSL --compressed "https://github.com/prefix-dev/pixi/releases/download/${PIXI_VERSION}/pixi-$(uname -m)-unknown-linux-musl" \
3434
&& chmod +x /usr/local/bin/pixi \

src/assets/pixi/reference/cli/pixi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pixi [OPTIONS] [COMMAND]
3636
| [`tree`](pixi/tree.md) | Show a tree of workspace dependencies |
3737
| [`update`](pixi/update.md) | The `update` command checks if there are newer versions of the dependencies and updates the `pixi.lock` file and environments accordingly |
3838
| [`upgrade`](pixi/upgrade.md) | Checks if there are newer versions of the dependencies and upgrades them in the lockfile and manifest file |
39-
| [`upload`](pixi/upload.md) | Upload a conda package |
39+
| [`upload`](pixi/upload.md) | Upload conda packages to various channels |
4040
| [`workspace`](pixi/workspace.md) | Modify the workspace configuration file through the command line |
4141

4242

src/assets/pixi/reference/cli/pixi/add.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ pixi add [OPTIONS] <SPEC>...
4646
: Run post-link scripts (insecure)
4747
- <a id="arg---tls-no-verify" href="#arg---tls-no-verify">`--tls-no-verify`</a>
4848
: Do not verify the TLS certificate of the server
49+
- <a id="arg---tls-root-certs" href="#arg---tls-root-certs">`--tls-root-certs <TLS_ROOT_CERTS>`</a>
50+
: Which TLS root certificates to use: 'webpki' (bundled Mozilla roots), 'native' (system store), or 'all' (both)
51+
<br>**env**: `PIXI_TLS_ROOT_CERTS`
4952
- <a id="arg---use-environment-activation-cache" href="#arg---use-environment-activation-cache">`--use-environment-activation-cache`</a>
5053
: Use environment activation cache (experimental)
5154

src/assets/pixi/reference/cli/pixi/build.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ pixi build [OPTIONS]
4545
: Run post-link scripts (insecure)
4646
- <a id="arg---tls-no-verify" href="#arg---tls-no-verify">`--tls-no-verify`</a>
4747
: Do not verify the TLS certificate of the server
48+
- <a id="arg---tls-root-certs" href="#arg---tls-root-certs">`--tls-root-certs <TLS_ROOT_CERTS>`</a>
49+
: Which TLS root certificates to use: 'webpki' (bundled Mozilla roots), 'native' (system store), or 'all' (both)
50+
<br>**env**: `PIXI_TLS_ROOT_CERTS`
4851
- <a id="arg---use-environment-activation-cache" href="#arg---use-environment-activation-cache">`--use-environment-activation-cache`</a>
4952
: Use environment activation cache (experimental)
5053

src/assets/pixi/reference/cli/pixi/exec.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ pixi exec [OPTIONS] [COMMAND]...
5353
: Run post-link scripts (insecure)
5454
- <a id="arg---tls-no-verify" href="#arg---tls-no-verify">`--tls-no-verify`</a>
5555
: Do not verify the TLS certificate of the server
56+
- <a id="arg---tls-root-certs" href="#arg---tls-root-certs">`--tls-root-certs <TLS_ROOT_CERTS>`</a>
57+
: Which TLS root certificates to use: 'webpki' (bundled Mozilla roots), 'native' (system store), or 'all' (both)
58+
<br>**env**: `PIXI_TLS_ROOT_CERTS`
5659
- <a id="arg---use-environment-activation-cache" href="#arg---use-environment-activation-cache">`--use-environment-activation-cache`</a>
5760
: Use environment activation cache (experimental)
5861

src/assets/pixi/reference/cli/pixi/global/add.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ pixi global add [OPTIONS] --environment <ENVIRONMENT> [PACKAGE]...
4343
: Run post-link scripts (insecure)
4444
- <a id="arg---tls-no-verify" href="#arg---tls-no-verify">`--tls-no-verify`</a>
4545
: Do not verify the TLS certificate of the server
46+
- <a id="arg---tls-root-certs" href="#arg---tls-root-certs">`--tls-root-certs <TLS_ROOT_CERTS>`</a>
47+
: Which TLS root certificates to use: 'webpki' (bundled Mozilla roots), 'native' (system store), or 'all' (both)
48+
<br>**env**: `PIXI_TLS_ROOT_CERTS`
4649
- <a id="arg---use-environment-activation-cache" href="#arg---use-environment-activation-cache">`--use-environment-activation-cache`</a>
4750
: Use environment activation cache (experimental)
4851

src/assets/pixi/reference/cli/pixi/global/expose/add.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ pixi global expose add [OPTIONS] --environment <ENVIRONMENT> [MAPPING]...
3838
: Run post-link scripts (insecure)
3939
- <a id="arg---tls-no-verify" href="#arg---tls-no-verify">`--tls-no-verify`</a>
4040
: Do not verify the TLS certificate of the server
41+
- <a id="arg---tls-root-certs" href="#arg---tls-root-certs">`--tls-root-certs <TLS_ROOT_CERTS>`</a>
42+
: Which TLS root certificates to use: 'webpki' (bundled Mozilla roots), 'native' (system store), or 'all' (both)
43+
<br>**env**: `PIXI_TLS_ROOT_CERTS`
4144
- <a id="arg---use-environment-activation-cache" href="#arg---use-environment-activation-cache">`--use-environment-activation-cache`</a>
4245
: Use environment activation cache (experimental)
4346

0 commit comments

Comments
 (0)