Conda packaging linux #42
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: Conda packaging linux | |
on: | |
workflow_dispatch: | |
jobs: | |
Linux: | |
name: Linux | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
miniconda-version: "latest" | |
activate-environment: packaging-linux | |
- name: Conda build for Linux | |
shell: bash -l {0} | |
run: | | |
conda update --all | |
conda install conda-build anaconda-client conda-verify | |
conda-build conda.recipe -c conda-forge -c set3mah --output-folder . | |
anaconda login --username ${{ secrets.ANACONDA_USERNAME }} --password ${{ secrets.ANACONDA_PASSWORD }} | |
anaconda upload linux-64/*.tar.bz2 --force | |
anaconda logout |