From e7d38310a915251a3558656869422d2ffb69b700 Mon Sep 17 00:00:00 2001 From: Pavel Abramov Date: Thu, 1 Feb 2024 09:56:45 +0100 Subject: [PATCH] Print artifact name Signed-off-by: Pavel Abramov --- .github/actions/run-eden-test/action.yml | 4 ++++ .github/actions/setup-environment/action.yml | 4 ++++ .github/workflows/test.yml | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/.github/actions/run-eden-test/action.yml b/.github/actions/run-eden-test/action.yml index 0b259ecd1..c80620b30 100644 --- a/.github/actions/run-eden-test/action.yml +++ b/.github/actions/run-eden-test/action.yml @@ -19,6 +19,10 @@ inputs: runs: using: 'composite' steps: + - name: Print Artifact + run: | + echo "${{ inputs.eve_artifact_name }}" + shell: bash - name: Setup Environment uses: ./eden/.github/actions/setup-environment with: diff --git a/.github/actions/setup-environment/action.yml b/.github/actions/setup-environment/action.yml index c380cc4f4..fbedeee07 100644 --- a/.github/actions/setup-environment/action.yml +++ b/.github/actions/setup-environment/action.yml @@ -16,6 +16,10 @@ inputs: runs: using: 'composite' steps: + - name: Print Artifact + run: | + echo "${{ inputs.eve_artifact_name }}" + shell: bash - name: Download artifact if specified if: inputs.eve_artifact_name != '' uses: actions/download-artifact@v3 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6e606f013..160fd517f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,6 +41,10 @@ jobs: with: repository: "lf-edge/eden" path: "./eden" + - name: Print Artifact + run: | + echo "${{ inputs.eve_artifact_name }}" + shell: bash - name: Run Smoke tests uses: ./eden/.github/actions/run-eden-test with: