Skip to content

Commit

Permalink
Create publish_conda.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gbiavati authored Feb 29, 2024
1 parent 537109e commit 5a14982
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/publish_conda.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: publish_conda

on:
release:
types: [published]

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: publish-to-conda
uses: MichaelsJP/conda-package-publish-action@v1.0.0
with:
subDir: '.conda'
AnacondaToken: ${{ secrets.ANACONDA_TOKEN }}
platforms: 'all'
override: true
dry_run: true

0 comments on commit 5a14982

Please sign in to comment.