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: