Skip to content

Commit

Permalink
Fix dashboard release due to wrong registry env var. (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
artursouza committed Sep 28, 2020
1 parent 1f1ab9c commit 417c583
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,15 @@ jobs:
if: matrix.target_os != 'darwin' && github.event_name != 'pull_request'
run: |
echo "Build docker image and push image..."
make docker-push TARGET_OS=${{ matrix.target_os }} TARGET_ARCH=${{ matrix.target_arch }} DAPR_REGISTRY=${{ secrets.DOCKER_REGISTRY }} DAPR_TAG=${{ env.REL_VERSION }}
make docker-push TARGET_OS=${{ matrix.target_os }} TARGET_ARCH=${{ matrix.target_arch }} DAPR_REGISTRY=${{ secrets.DOCKER_DAPRIO_REGISTRY }} DAPR_TAG=${{ env.REL_VERSION }}
publish:
name: Publish docker image and binaries
needs: build
if: github.event_name != 'pull_request'
env:
ARTIFACTS_DIR: ./release
DAPR_VERSION_ARTIFACT: dapr_version
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
DOCKER_REGISTRY: ${{ secrets.DOCKER_DAPRIO_REGISTRY }}
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
Expand Down Expand Up @@ -177,4 +177,4 @@ jobs:
if: matrix.target_os != 'darwin'
run: |
echo "Build docker multiarch image manifest and push it"
make docker-publish DAPR_REGISTRY=${{ secrets.DOCKER_REGISTRY }} DAPR_TAG=${{ env.REL_VERSION }}
make docker-publish DAPR_REGISTRY=${{ secrets.DOCKER_DAPRIO_REGISTRY }} DAPR_TAG=${{ env.REL_VERSION }}

0 comments on commit 417c583

Please sign in to comment.