feature(wyx): add three KL-divergence variants (#870) #1109
This file contains hidden or 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: package_release_conda | |
| on: [push] | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'push' && (startsWith(github.ref, 'refs/tags') || contains(github.event.head_commit.message, 'conda')) | |
| 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' |