From 62d3673230797aec6184233e9a8dd48ff52eec41 Mon Sep 17 00:00:00 2001 From: Gage Larsen Date: Fri, 10 May 2024 13:23:33 -0600 Subject: [PATCH] don't need matrix for conda build --- .github/workflows/tethys-release.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tethys-release.yml b/.github/workflows/tethys-release.yml index e35d6cd52..3de9ffcd5 100644 --- a/.github/workflows/tethys-release.yml +++ b/.github/workflows/tethys-release.yml @@ -77,15 +77,12 @@ jobs: docker push ${{ secrets.DOCKER_UPLOAD_URL }}:latest; conda-build: - name: Conda Build (${{ matrix.platform }}, ${{ matrix.django-version }}, ${{ matrix.python-version }}) + name: Conda Build (${{ matrix.platform }}) runs-on: ${{ matrix.platform }} strategy: fail-fast: false matrix: platform: [ubuntu-latest] - python-version: ["3.10", "3.11", "3.12"] - django-version: ["3.2", "4.2", "5.0"] - steps: # Checkout the source - name: Checkout Source uses: actions/checkout@v2 @@ -98,7 +95,7 @@ jobs: - name: Safe Tag id: safetag run: | - full_tag="${{ steps.version.outputs.full }}-${{ matrix.django-version }}-${{ matrix.python-version }}"; + full_tag="${{ steps.version.outputs.full }}"; # no "+" characters allowed in Docker tags safe_tag="${full_tag//+/-}"; echo "safetag=$safe_tag" >> $GITHUB_OUTPUT;