Update meta.yaml #12
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 Conda Package on Linux | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Conda | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
python-version: 3.11 | |
activate-environment: myenv | |
- name: Install dependencies | |
shell: bash -l {0} | |
run: | | |
conda install conda-build anaconda-client | |
- name: Build Conda package | |
shell: bash -l {0} | |
run: | | |
conda build . -c conda-forge -c vignesh229 | |
- name: Upload Conda package | |
shell: bash -l {0} | |
env: | |
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }} | |
run: | | |
anaconda upload $CONDA_PREFIX/conda-bld/linux-64/*.tar.bz2 |