Skip to content

Commit baa531c

Browse files
committed
More workflow fixes
1 parent 4c2a4c9 commit baa531c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/conformance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@ jobs:
137137
138138
- name: Setup license file for plus
139139
if: ${{ inputs.image == 'plus' }}
140-
run: echo "${PLUS_LICENSE}" > license.jwt
141140
env:
142141
PLUS_LICENSE: ${{ secrets.JWT_PLUS_REGISTRY }}
142+
run: echo "${PLUS_LICENSE}" > license.jwt
143143

144144
- name: Setup conformance tests
145145
run: |

.github/workflows/functional.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ jobs:
102102
103103
- name: Setup license file for plus
104104
if: ${{ inputs.image == 'plus' }}
105-
run: echo "${PLUS_LICENSE}" > license.jwt
106105
env:
107106
PLUS_LICENSE: ${{ secrets.JWT_PLUS_REGISTRY }}
107+
run: echo "${PLUS_LICENSE}" > license.jwt
108108

109109
- name: Install cloud-provider-kind
110110
run: |

.github/workflows/helm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,14 @@ jobs:
9898
kind create cluster --name ${{ github.run_id }} --image=kindest/node:${{ inputs.k8s-version }}
9999
kind load docker-image ${{ join(fromJSON(steps.ngf-meta.outputs.json).tags, ' ') }} ${{ join(fromJSON(steps.nginx-meta.outputs.json).tags, ' ') }} --name ${{ github.run_id }}
100100
kubectl kustomize config/crd/gateway-api/standard | kubectl apply -f -
101+
kubectl create namespace nginx-gateway
101102
102103
- name: Create plus secret
103104
if: ${{ inputs.image == 'plus' }}
104105
env:
105106
PLUS_LICENSE: ${{ secrets.JWT_PLUS_REGISTRY }}
106107
run: |
107108
echo "${PLUS_LICENSE}" > license.jwt
108-
kubectl create namespace nginx-gateway
109109
kubectl create secret generic nplus-license --from-file license.jwt -n nginx-gateway
110110
111111
- name: Set up Python

.github/workflows/nfr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ jobs:
113113
114114
- name: Setup license file for plus
115115
if: matrix.type == 'plus'
116-
run: echo "$PLUS_LICENSE" > license.jwt
117116
env:
118117
PLUS_LICENSE: ${{ secrets.JWT_PLUS_REGISTRY }}
118+
run: echo "${PLUS_LICENSE}" > license.jwt
119119

120120
- name: Create GKE cluster
121121
working-directory: ./tests

0 commit comments

Comments
 (0)