From 9f484782caba1dbb375aa8727eabceaa5a19e994 Mon Sep 17 00:00:00 2001 From: JM Faircloth Date: Mon, 12 Jun 2023 12:02:10 -0500 Subject: [PATCH] define outputs --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 50b68b9..565bcd6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -101,6 +101,9 @@ jobs: e2e: runs-on: ubuntu-latest + outputs: + otherSecret: ${{ steps.kv-secrets.outputs.otherSecret }} + otherSecretTLS: ${{ steps.kv-secrets-tls.outputs.otherSecretTLS }} steps: - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 @@ -256,4 +259,4 @@ jobs: - name: Verify Vault Action Outputs run: npm run test:integration:e2e-tls env: - OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets-tls.outputs.otherSecret }} + OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets-tls.outputs.otherSecretTLS }}