Skip to content

Commit

Permalink
Fix REGISTRY_NAMESPACE default values
Browse files Browse the repository at this point in the history
  • Loading branch information
edewata committed Feb 20, 2024
1 parent 2ac7624 commit d2a2884
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Third party Tests
on: [push, pull_request]

env:
NAMESPACE: ${{ vars.REGISTRY_NAMESPACE || github.repository_owner }}
NAMESPACE: ${{ vars.REGISTRY_NAMESPACE || 'dogtagpki' }}

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pki-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Testing PKI build
on: workflow_call

env:
NAMESPACE: ${{ vars.REGISTRY_NAMESPACE || github.repository_owner }}
NAMESPACE: ${{ vars.REGISTRY_NAMESPACE || 'dogtagpki' }}

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pki-ca-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Testing PKI CA
on: workflow_call

env:
NAMESPACE: ${{ vars.REGISTRY_NAMESPACE || github.repository_owner }}
NAMESPACE: ${{ vars.REGISTRY_NAMESPACE || 'dogtagpki' }}

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pki-tools-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Testing PKI tools
on: workflow_call

env:
NAMESPACE: ${{ vars.REGISTRY_NAMESPACE || github.repository_owner }}
NAMESPACE: ${{ vars.REGISTRY_NAMESPACE || 'dogtagpki' }}

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pki-tps-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Testing TPS
on: workflow_call

env:
NAMESPACE: ${{ vars.REGISTRY_NAMESPACE || github.repository_owner }}
NAMESPACE: ${{ vars.REGISTRY_NAMESPACE || 'dogtagpki' }}

jobs:
test:
Expand Down

0 comments on commit d2a2884

Please sign in to comment.