Publish to Conda #29
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
name: Publish to Conda | |
on: | |
release: | |
types: [published] | |
workflow_dispatch: | |
jobs: | |
conda_deployment_with_new_tag: | |
name: Conda deployment of package with Python ${{ matrix.python-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Publish to Conda | |
uses: fcakyon/conda-publish-action@v1.3 | |
with: | |
subdir: 'conda' | |
anacondatoken: ${{ secrets.ANACONDA_TOKEN }} | |
platforms: 'win osx linux' |