Publish Conda #2
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 Conda | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Release Version' | |
required: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VERSION: "${{ github.event.inputs.version }}" | |
jobs: | |
release: | |
name: Publish Conda | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.GIT_TOKEN }} | |
# Use older python version when running publish_conda_package_action until https://github.com/amauryval/publish_conda_package_action/issues/4 is resolved. | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Publish to Conda | |
uses: amauryval/publish_conda_package_action@2.0.3 | |
with: | |
CondaDir: 'py/h2o_wave/conda' | |
Platforms: 'noarch' | |
CondaUsername: ${{ secrets.CONDA_USERNAME }} | |
CondaPassword: ${{ secrets.CONDA_PASSWORD }} | |
env: | |
# VERSION clashes with conda build. Use PKG_VERSION instead. | |
PKG_VERSION: ${{ env.VERSION }} |