Reusable GitHub Actions for the Anaconda platform.
Install the Anaconda CLI and optional tools in GitHub Actions.
- uses: anaconda/actions/setup-anaconda-cli@v0See the setup-anaconda-cli README for full documentation.
Upload conda or Python packages to Anaconda.org or Package Security Manager (PSM).
Upload to anaconda.org:
- uses: anaconda/actions/upload-package@v0
with:
token: ${{ secrets.ANACONDA_ORG_TOKEN }}
channel: my-org
packages: ./build/**/*.condaUpload to Package Security Manager (PSM):
- uses: anaconda/actions/upload-package@v0
with:
token: ${{ secrets.PSM_TOKEN }}
channel: my-channel
packages: ./build/**/*.conda
target-type: psm
repository-url: https://pkgs.example.com/api/repoSee the upload-package README for full documentation.
See LICENSE.