Skip to content

Commit 1cd2b03

Browse files
committed
bug fix
1 parent dfffe4e commit 1cd2b03

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/conda_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ jobs:
5959
# Build repo home URL
6060
REPO_HOME="https://github.com/${GITHUB_REPOSITORY}"
6161
62+
echo "REPO_NAME=$REPO_NAME" >> $GITHUB_OUTPUT
6263
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
6364
echo "TAR_URL=$TAR_URL" >> $GITHUB_OUTPUT
6465
echo "SHA256=$SHA256" >> $GITHUB_OUTPUT
6566
echo "REPO_OWNER=$REPO_OWNER" >> $GITHUB_OUTPUT
66-
echo "REPO_NAME=$REPO_NAME" >> $GITHUB_OUTPUT
6767
echo "REPO_HOME=$REPO_HOME" >> $GITHUB_OUTPUT
6868
6969
# 4) Build the conda package for each platform

conda-recipe/meta.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
{% set REPO_NAME = environ.get('GITHUB_REPO_NAME', 'cpp-python-tool-template') %}
2-
{% set VERSION = environ.get('PACKAGE_VERSION', '0.0.1') %}
3-
{% set TAR_URL = environ.get('PACKAGE_TAR_URL', '') %}
4-
{% set SHA256 = environ.get('PACKAGE_SHA256', '') %}
5-
{% set REPO_HOME = environ.get('PACKAGE_HOME', '') %}
1+
{% set REPO_NAME = environ.get('REPO_NAME', 'cpp-python-tool-template') %}
2+
{% set VERSION = environ.get('VERSION', '0.0.1') %}
3+
{% set TAR_URL = environ.get('TAR_URL', '') %}
4+
{% set SHA256 = environ.get('SHA256', '') %}
5+
{% set REPO_HOME = environ.get('REPO_HOME', '') %}
66

77
package:
88
name: {{ REPO_NAME }}

0 commit comments

Comments
 (0)