Skip to content

Commit

Permalink
fix: Fix incorrect org name check
Browse files Browse the repository at this point in the history
Signed-off-by: Dom Rodriguez <shymega@shymega.org.uk>
  • Loading branch information
shymega committed Aug 6, 2024
1 parent 9e1972b commit 39f010c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-push-to-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ permissions:

jobs:
build-planet-container-images:
if: ${{ github.repository_owner == 'planet-community-org' }} # To be changed to PC.
if: ${{ github.repository_owner == 'planet-community' }} # To be changed to PC.
uses: ./.github/workflows/build-and-push-planet-containers.yml
secrets: inherit

build-cosmo-codios-codid-cargo-container-image:
if: ${{ github.repository_owner == 'planet-community-org' }} # To be changed to PC.
if: ${{ github.repository_owner == 'planet-community' }} # To be changed to PC.
uses: ./.github/workflows/build-and-push-cosmo-codios-codid-cargo.yml
secrets: inherit

build-cosmo-codios-codios-cargo-container-image:
if: ${{ github.repository_owner == 'planet-community-org' }} # To be changed to PC.
if: ${{ github.repository_owner == 'planet-community' }} # To be changed to PC.
uses: ./.github/workflows/build-and-push-cosmo-codios-codios-cargo.yml
secrets: inherit

0 comments on commit 39f010c

Please sign in to comment.