Skip to content

Commit 012f16f

Browse files
authored
Merge pull request #290 from CCPBioSim/289-bug-fix-regular-expression-within-release-workflow
Fix Conda recipe version update in release workflow
2 parents a075ffc + 77a1c10 commit 012f16f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/release.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,8 @@ jobs:
160160

161161
- name: Set version in conda recipe
162162
run: |
163-
sed -i -E "s/^{% set version = \".*\" %}$/{% set version = \"${{ github.event.inputs.version }}\" %}/" conda-recipe/meta.yaml
163+
sed -i "s/^{% set version = \".*\" %}$/{% set version = \"${{ github.event.inputs.version }}\" %}/" conda-recipe/meta.yaml
164+
grep '{% set version' conda-recipe/meta.yaml
164165
165166
- name: Setup Conda
166167
uses: conda-incubator/setup-miniconda@v3

0 commit comments

Comments
 (0)