Skip to content

Commit

Permalink
Merge pull request #19 from manuelbuil/fix-githubowner
Browse files Browse the repository at this point in the history
Fix the github owner condition
  • Loading branch information
manuelbuil authored Oct 20, 2021
2 parents fb66800 + 89056ac commit 2b102ee
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push Docker image for amd64
if: github.repository_owner == 'flannelcni'
if: github.repository_owner == 'flannel-io'
uses: docker/build-push-action@v2
with:
context: .
Expand All @@ -66,7 +66,7 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}-amd64

- name: Build and push Docker image for arm
if: github.repository_owner == 'flannelcni'
if: github.repository_owner == 'flannel-io'
uses: docker/build-push-action@v2
with:
context: .
Expand All @@ -75,7 +75,7 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}-arm

- name: Build and push Docker image for arm64
if: github.repository_owner == 'flannelcni'
if: github.repository_owner == 'flannel-io'
uses: docker/build-push-action@v2
with:
context: .
Expand All @@ -84,7 +84,7 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}-arm64

- name: Build and push Docker image for s390x
if: github.repository_owner == 'flannelcni'
if: github.repository_owner == 'flannel-io'
uses: docker/build-push-action@v2
with:
context: .
Expand All @@ -93,7 +93,7 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}-s390x

- name: Build and push Docker image for ppc64le
if: github.repository_owner == 'flannelcni'
if: github.repository_owner == 'flannel-io'
uses: docker/build-push-action@v2
with:
context: .
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Create manifest for multi-arch image
if: github.repository_owner == 'flannelcni'
if: github.repository_owner == 'flannel-io'
run: |
# get artifacts from previous steps and integrate into one multi-arch manifest
docker pull ${{ steps.meta.outputs.tags }}-amd64
Expand Down

0 comments on commit 2b102ee

Please sign in to comment.