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 f2cbe31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ jobs:
- name: Create Namespace
working-directory: .github/e2e
run: |+
kubectl create namespace e2e-${{ env.GITHUB_RUN_NUMBER }}
kubectl create namespace e2e-${GITHUB_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-${GITHUB_RUN_NUMBER} -f -

0 comments on commit f2cbe31

Please sign in to comment.