Skip to content

Commit

Permalink
fix source file path
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Mar 9, 2024
1 parent 5ee56e7 commit 1818a67
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/actions/publish-test-results/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ runs:
id: archive
shell: bash
run: |
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
Expand All @@ -36,12 +35,11 @@ runs:
uses: actions/upload-artifact@v3
with:
name: ${{ steps.archive.outputs.archive-name }}
path: ${{ inputs.source-file }}
path: ./${{ inputs.source-file }}

- 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"

0 comments on commit 1818a67

Please sign in to comment.