Skip to content

Commit f314607

Browse files
authored
Update bioconda_pr.yml
1 parent 51cb545 commit f314607

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/bioconda_pr.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ jobs:
4343
run: |
4444
mkdir -p recipes/${PACKAGE}
4545
cat <<'EOF' > recipes/${PACKAGE}/meta.yaml
46-
{% set name = "${PACKAGE}" %}
47-
{% set version = "${VERSION}" %}
46+
{% set name = "{{ name }}" %}
47+
{% set version = "{{ version }}" %}
4848

4949
package:
5050
name: "{{ name|lower }}"
5151
version: "{{ version }}"
5252

5353
source:
54-
url: https://github.com/kamome1201/${PACKAGE}/archive/refs/tags/v{{ version }}.tar.gz
54+
url: https://github.com/kamome1201/{{ name }}/archive/refs/tags/v{{ version }}.tar.gz
5555
sha256: "TO_BE_REPLACED"
5656

5757
build:
@@ -70,13 +70,13 @@ requirements:
7070

7171
test:
7272
imports:
73-
- ${PACKAGE}
73+
- {{ name }}
7474

7575
about:
76-
home: "https://github.com/kfuku52/${PACKAGE}"
76+
home: "https://github.com/kfuku52/{{ name }}"
7777
license: "BSD-3-Clause"
7878
license_file: "LICENSE"
79-
summary: "Short summary of what ${PACKAGE} does."
79+
summary: "Short summary of what {{ name }} does."
8080
EOF
8181

8282
- name: Download source archive and compute SHA256

0 commit comments

Comments
 (0)