-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,12 @@ | |
[![Latest release][latest-release-badge]][releases] | ||
[![Project Chat][chat-badge]][chat-url] | ||
|
||
[license-badge]: https://img.shields.io/github/license/pavelzw/setup-pixi?style=flat-square | ||
[license-badge]: https://img.shields.io/github/license/prefix-dev/setup-pixi?style=flat-square | ||
[license]: ./LICENSE | ||
[build-badge]: https://img.shields.io/github/actions/workflow/status/pavelzw/setup-pixi/test.yml?style=flat-square | ||
[build]: https://github.com/pavelzw/setup-pixi/actions/ | ||
[latest-release-badge]: https://img.shields.io/github/v/tag/pavelzw/setup-pixi?style=flat-square&label=latest&sort=semver | ||
[releases]: https://github.com/pavelzw/setup-pixi/releases | ||
[build-badge]: https://img.shields.io/github/actions/workflow/status/prefix-dev/setup-pixi/test.yml?style=flat-square | ||
[build]: https://github.com/prefix-dev/setup-pixi/actions/ | ||
[latest-release-badge]: https://img.shields.io/github/v/tag/prefix-dev/setup-pixi?style=flat-square&label=latest&sort=semver | ||
[releases]: https://github.com/prefix-dev/setup-pixi/releases | ||
[chat-badge]: https://img.shields.io/discord/1082332781146800168.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2&style=flat-square | ||
[chat-url]: https://discord.gg/kKV8ZxyzY4 | ||
|
||
|
@@ -23,7 +23,7 @@ GitHub Action to set up the [pixi](https://github.com/prefix-dev/pixi) package m | |
## Usage | ||
|
||
```yml | ||
- uses: pavelzw/[email protected] | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: '0.2.0' | ||
cache: true | ||
|
@@ -34,7 +34,7 @@ GitHub Action to set up the [pixi](https://github.com/prefix-dev/pixi) package m | |
> [!WARNING] | ||
> Since pixi is not yet stable, the API of this action may change between minor versions. | ||
> Please pin the versions of this action to a specific version (i.e., `pavelzw/[email protected]`) to avoid breaking changes. | ||
> Please pin the versions of this action to a specific version (i.e., `prefix-dev/[email protected]`) to avoid breaking changes. | ||
> You can automatically update the version of this action by using [Dependabot](https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot). | ||
|
||
## Features | ||
|
@@ -71,7 +71,7 @@ Specify the token using the `auth-token` input argument. | |
This form of authentication (bearer token in the request headers) is mainly used at [prefix.dev](https://prefix.dev). | ||
|
||
```yml | ||
- uses: pavelzw/[email protected] | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
auth-host: prefix.dev | ||
auth-token: ${{ secrets.PREFIX_DEV_TOKEN }} | ||
|
@@ -83,7 +83,7 @@ Specify the username and password using the `auth-username` and `auth-password` | |
This form of authentication (HTTP Basic Auth) is used in some enterprise environments with [artifactory](https://jfrog.com/artifactory) for example. | ||
|
||
```yml | ||
- uses: pavelzw/[email protected] | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
auth-host: custom-artifactory.com | ||
auth-username: ${{ secrets.PIXI_USERNAME }} | ||
|
@@ -96,7 +96,7 @@ Specify the conda-token using the `conda-token` input argument. | |
This form of authentication (token is encoded in URL: `https://my-quetz-instance.com/t/<token>/get/custom-channel`) is used at [anaconda.org](https://anaconda.org) or with [quetz instances](https://github.com/mamba-org/quetz). | ||
|
||
```yml | ||
- uses: pavelzw/[email protected] | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
auth-host: anaconda.org # or my-quetz-instance.com | ||
conda-token: ${{ secrets.CONDA_TOKEN }} | ||
|
@@ -138,7 +138,7 @@ The first one is the debug logging of the action itself. | |
This can be enabled by running the action with the `RUNNER_DEBUG` environment variable set to `true`. | ||
|
||
```yml | ||
- uses: pavelzw/[email protected] | ||
- uses: prefix-dev/[email protected] | ||
env: | ||
RUNNER_DEBUG: true | ||
``` | ||
|
@@ -156,7 +156,7 @@ The second type is the debug logging of the pixi executable. | |
This can be specified by setting the `log-level` input. | ||
|
||
```yml | ||
- uses: pavelzw/[email protected] | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
# one of `q`, `default`, `v`, `vv`, or `vvv`. | ||
log-level: vvv | ||
|
@@ -180,7 +180,7 @@ If you set `post-cleanup` to `true`, the action will delete the following files: | |
If nothing is specified, `setup-pixi` will default to `true`. | ||
|
||
```yml | ||
- uses: pavelzw/[email protected] | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
post-cleanup: false | ||
``` | ||
|