Skip to content

Commit c125e9e

Browse files
authored
Merge pull request #36 from IntelPython/fix_ci
Update format from .tar.bz2 to .conda to fix CI
2 parents 59ff7be + 5ea729e commit c125e9e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/conda-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
uses: actions/[email protected]
5959
with:
6060
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
61-
path: ${{ env.CONDA_BLD }}/${{ env.PACKAGE_NAME }}-*.tar.bz2
61+
path: ${{ env.CONDA_BLD }}/${{ env.PACKAGE_NAME }}-*.conda
6262

6363
test_linux:
6464
needs: build_linux
@@ -85,7 +85,7 @@ jobs:
8585
- name: Create conda channel
8686
run: |
8787
mkdir -p $GITHUB_WORKSPACE/channel/linux-64
88-
mv ${PACKAGE_NAME}-*.tar.bz2 $GITHUB_WORKSPACE/channel/linux-64
88+
mv ${PACKAGE_NAME}-*.conda $GITHUB_WORKSPACE/channel/linux-64
8989
conda index $GITHUB_WORKSPACE/channel
9090
# Test channel
9191
conda search $PACKAGE_NAME -c $GITHUB_WORKSPACE/channel --override-channels
@@ -179,7 +179,7 @@ jobs:
179179
uses: actions/[email protected]
180180
with:
181181
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
182-
path: ${{ env.CONDA_BLD }}${{ env.PACKAGE_NAME }}-*.tar.bz2
182+
path: ${{ env.CONDA_BLD }}${{ env.PACKAGE_NAME }}-*.conda
183183

184184
test_windows:
185185
needs: build_windows
@@ -221,7 +221,7 @@ jobs:
221221
echo ${{ env.workdir }}
222222
mkdir ${{ env.workdir }}\channel
223223
mkdir ${{ env.workdir }}\channel\win-64
224-
move ${{ env.PACKAGE_NAME }}-*.tar.bz2 ${{ env.workdir }}\channel\win-64
224+
move ${{ env.PACKAGE_NAME }}-*.conda ${{ env.workdir }}\channel\win-64
225225
dir ${{ env.workdir }}\channel\win-64
226226
227227
- name: Index the channel

0 commit comments

Comments
 (0)