Skip to content

Commit

Permalink
More workflow fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sjberman committed Nov 19, 2024
1 parent 4c2a4c9 commit baa531c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ jobs:
- name: Setup license file for plus
if: ${{ inputs.image == 'plus' }}
run: echo "${PLUS_LICENSE}" > license.jwt
env:
PLUS_LICENSE: ${{ secrets.JWT_PLUS_REGISTRY }}
run: echo "${PLUS_LICENSE}" > license.jwt

- name: Setup conformance tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/functional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ jobs:
- name: Setup license file for plus
if: ${{ inputs.image == 'plus' }}
run: echo "${PLUS_LICENSE}" > license.jwt
env:
PLUS_LICENSE: ${{ secrets.JWT_PLUS_REGISTRY }}
run: echo "${PLUS_LICENSE}" > license.jwt

- name: Install cloud-provider-kind
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,14 @@ jobs:
kind create cluster --name ${{ github.run_id }} --image=kindest/node:${{ inputs.k8s-version }}
kind load docker-image ${{ join(fromJSON(steps.ngf-meta.outputs.json).tags, ' ') }} ${{ join(fromJSON(steps.nginx-meta.outputs.json).tags, ' ') }} --name ${{ github.run_id }}
kubectl kustomize config/crd/gateway-api/standard | kubectl apply -f -
kubectl create namespace nginx-gateway
- name: Create plus secret
if: ${{ inputs.image == 'plus' }}
env:
PLUS_LICENSE: ${{ secrets.JWT_PLUS_REGISTRY }}
run: |
echo "${PLUS_LICENSE}" > license.jwt
kubectl create namespace nginx-gateway
kubectl create secret generic nplus-license --from-file license.jwt -n nginx-gateway
- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nfr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ jobs:
- name: Setup license file for plus
if: matrix.type == 'plus'
run: echo "$PLUS_LICENSE" > license.jwt
env:
PLUS_LICENSE: ${{ secrets.JWT_PLUS_REGISTRY }}
run: echo "${PLUS_LICENSE}" > license.jwt

- name: Create GKE cluster
working-directory: ./tests
Expand Down

0 comments on commit baa531c

Please sign in to comment.