diff --git a/.github/actions/publish-test-results/action.yml b/.github/actions/publish-test-results/action.yml index 4a977b5c..1ac7086d 100644 --- a/.github/actions/publish-test-results/action.yml +++ b/.github/actions/publish-test-results/action.yml @@ -27,8 +27,9 @@ runs: id: archive shell: bash run: | - timestamp=$(date +'%Y-%m-%dT%H-%M-%S') #no colons allowed for artifacts - archive_name = ${{ inputs.archive-type }}_python-${{ inputs.python-version }}_${{ inputs.os }}_$timestamp + echo "Create unique test archive name" + timestamp=$(date +'%Y-%m-%dT%H-%M-%S') + archive_name="${{ inputs.archive-type }}_python-${{ inputs.python-version }}_${{ inputs.os }}_$timestamp" echo "archive-name=$archive_name" >> $GITHUB_OUTPUT - name: "Upload test results" @@ -40,6 +41,7 @@ runs: - name: "[INFO] Uploaded test artifacts" shell: bash run: | + echo "[INFO] Uploaded test artifacts" title="Uploaded test artifacts" message="Uploaded ${{ inputs.source-file }} to ${{ steps.archive.outputs.archive-name }}" echo "::notice title=${{ env.NOTIFICATION_PREFIX }}: $title::$message"