Skip to content

Commit

Permalink
fix matrix name
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Mar 20, 2024
1 parent 319cac3 commit c048824
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@ jobs:
name: Publish Conda - ${{ matrix.conda-name }}
runs-on: ubuntu-latest
needs: [conda_build, waiting_room]
matrix:
conda-name: [geoviews-core, geoviews]
strategy:
matrix:
conda-name: [geoviews-core, geoviews]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v4
Expand All @@ -84,7 +85,7 @@ jobs:
- name: Set environment variables
run: |
echo "TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
echo "CONDA_FILE=$(ls dist/${{ conda-name }}.tar.bz2)" >> $GITHUB_ENV
echo "CONDA_FILE=$(ls dist/${{ matrix.conda-name }}.tar.bz2)" >> $GITHUB_ENV
- uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
Expand Down

0 comments on commit c048824

Please sign in to comment.