Bump codecov/codecov-action from 3 to 4 (#312) #48
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: deploy | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
package: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
auto-activate-base: true | |
activate-environment: "" | |
miniforge-variant: Mambaforge | |
use-mamba: true | |
- name: linux conda build and upload | |
shell: bash -l {0} | |
env: | |
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_TOKEN }} | |
run: | | |
mamba install -n base -c conda-forge boa setuptools_scm anaconda-client -y | |
mamba config --set anaconda_upload yes | |
xvfb-run conda mambabuild -c conda-forge --user ilastik-forge conda-recipe |