File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 78
78
strategy :
79
79
matrix :
80
80
python : ['3.9', '3.10', '3.11', '3.12']
81
- env :
82
- conda-bld : C:\Miniconda\conda-bld\win-64\
83
81
steps :
84
82
- uses : actions/checkout@v4.1.7
85
83
with :
@@ -113,6 +111,7 @@ jobs:
113
111
- name : Store conda paths as envs
114
112
shell : bash -l {0}
115
113
run : |
114
+ echo "CONDA_BLD=$CONDA_PREFIX/conda-bld/win-64/" | tr "\\\\" '/' >> $GITHUB_ENV
116
115
echo "WHEELS_OUTPUT_FOLDER=$GITHUB_WORKSPACE${{ runner.os == 'Linux' && '/' || '\\' }}" >> $GITHUB_ENV
117
116
118
117
- name : Build conda package
@@ -126,7 +125,7 @@ jobs:
126
125
uses : actions/upload-artifact@v4.4.0
127
126
with :
128
127
name : ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
129
- path : ${{ env.conda-bld }}${{ env.PACKAGE_NAME }}-*.tar.bz2
128
+ path : ${{ env.CONDA_BLD }}${{ env.PACKAGE_NAME }}-*.tar.bz2
130
129
131
130
- name : Upload wheels artifact
132
131
uses : actions/upload-artifact@v4.4.0
You can’t perform that action at this time.
0 commit comments