Skip to content

Commit

Permalink
Try to use ${{ vars.** }} in matrix setting
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>
  • Loading branch information
martin-g committed Jan 10, 2024
1 parent 5ae92d4 commit 426b612
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ on:
env:
# REGISTRY_DH: docker.io/condaforge
# REGISTRY_QUAY: quay.io/condaforge
REGISTRY_DH: docker.io/mtgrigorov
REGISTRY_QUAY: quay.io/mgrigorov
REGISTRY_DH: ${{ vars.REGISTRY_DH }}
REGISTRY_QUAY: ${{ vars.REGISTRY_QUAY }}

jobs:
build:
Expand Down Expand Up @@ -289,7 +289,7 @@ jobs:
strategy:
fail-fast: false
matrix:
docker-registry: [docker.io/mtgrigorov, quay.io/mgrigorov]
docker-registry: [${{ vars.REGISTRY_DH }}, ${{ vars.REGISTRY_QUAY }}]
cfg:
- DOCKER_MANIFEST: linux-anvil-cos7
DOCKER_TAG: "latest"
Expand Down

0 comments on commit 426b612

Please sign in to comment.