🔖 Updating dependencies and linter #59
Workflow file for this run
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] | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setting up anaconda for channels | |
uses: s-weigand/setup-conda@v1 | |
with: | |
update-conda: true | |
conda-channels: anaconda, conda-forge | |
publish: | |
runs-on: ubuntu-latest | |
needs: setup | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Publish to anaconda.org | |
uses: fcakyon/conda-publish-action@v1.3 | |
with: | |
subdir: 'conda' | |
anacondatoken: ${{ secrets.ANACONDA_TOKEN }} | |
platforms: 'win osx linux' |