Skip to content

Commit

Permalink
Fix: Run conda upload commands manually
Browse files Browse the repository at this point in the history
  • Loading branch information
kayjan committed Oct 26, 2023
1 parent 0e09f7d commit 33618ac
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/conda-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,11 @@ jobs:
# git commit -m "Re-render recipe"
# git push
- name: publish-to-conda
uses: fcakyon/[email protected]
with:
subdir: "conda"
anacondatoken: ${{ secrets.CONDA_TOKEN }}
platforms: "win osx linux"
run: |
cd conda
conda build -c conda-forge --output-folder . .
conda convert -p osx-64 linux-64/*.tar.bz2
conda convert -p win-64 linux-64/*.tar.bz2
anaconda upload --label main osx-64/*.tar.bz2
anaconda upload --label main linux-64/*.tar.bz2
anaconda upload --label main win-64/*.tar.bz2

0 comments on commit 33618ac

Please sign in to comment.