We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c98b6f commit e2eb7aeCopy full SHA for e2eb7ae
.github/workflows/release_conda.yml
@@ -23,7 +23,7 @@ jobs:
23
- name: Checkout repository
24
uses: actions/checkout@v3
25
with:
26
- fetch-depth: 0 # necesario para que git describe detecte todos los tags
+ fetch-depth: 0 # necesario para git describe
27
28
- name: Set up Miniconda
29
uses: conda-incubator/setup-miniconda@v3
@@ -43,9 +43,7 @@ jobs:
43
44
- name: Set dynamic version in meta.yaml
45
run: |
46
- # Elimina la 'v' inicial si quieres solo números
47
- VERSION_NUMBER="${GIT_DESCRIBE_TAG#v}"
48
- # Reemplaza la línea de version en meta.yaml
+ VERSION_NUMBER="${GIT_DESCRIBE_TAG#v}" # elimina la 'v' inicial
49
sed -i "s|^{% set version.*%}|{% set version = \"$VERSION_NUMBER\" %}|" .github/conda/meta.yaml
50
51
- name: Build conda package
0 commit comments