Skip to content

Commit

Permalink
fix quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Mar 9, 2024
1 parent ff2c813 commit 5ee56e7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/actions/publish-test-results/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"

0 comments on commit 5ee56e7

Please sign in to comment.