We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59ff7be commit 43a1738Copy full SHA for 43a1738
.github/workflows/conda-package.yml
@@ -58,7 +58,7 @@ jobs:
58
uses: actions/[email protected]
59
with:
60
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
61
- path: ${{ env.CONDA_BLD }}/${{ env.PACKAGE_NAME }}-*.tar.bz2
+ path: ${{ env.CONDA_BLD }}/${{ env.PACKAGE_NAME }}-*.conda
62
63
test_linux:
64
needs: build_linux
@@ -85,7 +85,7 @@ jobs:
85
- name: Create conda channel
86
run: |
87
mkdir -p $GITHUB_WORKSPACE/channel/linux-64
88
- mv ${PACKAGE_NAME}-*.tar.bz2 $GITHUB_WORKSPACE/channel/linux-64
+ mv ${PACKAGE_NAME}-*.conda $GITHUB_WORKSPACE/channel/linux-64
89
conda index $GITHUB_WORKSPACE/channel
90
# Test channel
91
conda search $PACKAGE_NAME -c $GITHUB_WORKSPACE/channel --override-channels
0 commit comments