Skip to content

Commit

Permalink
don't need matrix for conda build
Browse files Browse the repository at this point in the history
  • Loading branch information
gagelarsen committed May 10, 2024
1 parent 029dca5 commit 62d3673
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/tethys-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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;
Expand Down

0 comments on commit 62d3673

Please sign in to comment.