Skip to content

Commit

Permalink
Fix run number ref
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega committed Mar 24, 2022
1 parent 29a4163 commit 5895974
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ env:
REGISTRY: ghcr.io
TARGET_IMAGE: ghcr.io/txpipe/oura-e2e:${{ github.sha }}
CLUSTER: m1-prod-6x3kk4
RUN_NUMBER: ${{ env.GITHUB_RUN_NUMBER }}

jobs:
build:
Expand Down Expand Up @@ -58,11 +59,11 @@ jobs:
- name: Create Namespace
working-directory: .github/e2e
run: |+
kubectl create namespace e2e-${{ env.GITHUB_RUN_NUMBER }}
kubectl create namespace e2e-${RUN_NUMBER}
- name: Rollout Jobs
working-directory: .github/e2e
env:
TEST_NAME: ${{ matrix.name }}
run: |+
envsubst < ${TEST_NAME}.yaml | kubectl apply -n e2e-${{ env.GITHUB_RUN_NUMBER }} -f -
envsubst < ${TEST_NAME}.yaml | kubectl apply -n e2e-${RUN_NUMBER} -f -

0 comments on commit 5895974

Please sign in to comment.