diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml index 56e64a1d3..99ed1a6f8 100644 --- a/.github/workflows/test-e2e.yml +++ b/.github/workflows/test-e2e.yml @@ -52,7 +52,9 @@ jobs: - name: Build Docker images for test environment run: | docker build -t pulse-mock-github:test ./tests/integration/mock-github-server - docker build -t pulse:test -f Dockerfile . + docker build -t pulse:test -f Dockerfile --build-arg PULSE_LICENSE_PUBLIC_KEY="$PULSE_LICENSE_PUBLIC_KEY" . + env: + PULSE_LICENSE_PUBLIC_KEY: ${{ secrets.PULSE_LICENSE_PUBLIC_KEY }} - name: Start test containers working-directory: tests/integration @@ -95,4 +97,3 @@ jobs: name: test-failures path: tests/integration/test-results/ retention-days: 7 - diff --git a/.github/workflows/test-updates.yml b/.github/workflows/test-updates.yml index ab3ea7533..8662af9a8 100644 --- a/.github/workflows/test-updates.yml +++ b/.github/workflows/test-updates.yml @@ -72,7 +72,9 @@ jobs: # Build Pulse test image cd ../../ - docker build -t pulse:test -f Dockerfile . + docker build -t pulse:test -f Dockerfile --build-arg PULSE_LICENSE_PUBLIC_KEY="$PULSE_LICENSE_PUBLIC_KEY" . + env: + PULSE_LICENSE_PUBLIC_KEY: ${{ secrets.PULSE_LICENSE_PUBLIC_KEY }} - name: Run diagnostic smoke test working-directory: tests/integration