Skip to content

Commit 892ea62

Browse files
committed
<TBBAS-2595> Normalize artifact name
1 parent ed73c41 commit 892ea62

File tree

1 file changed

+5
-4
lines changed
  • .github/actions/opendaq-github-download-artifact

1 file changed

+5
-4
lines changed

.github/actions/opendaq-github-download-artifact/action.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@ runs:
1818
- name: Download openDAQ artifact
1919
shell: bash
2020
run: |
21-
DEST=$(echo "${{ inputs.destination-dir }}" | sed 's|\\|/|g')
22-
ARTIFACT_DIR="$DEST/${{ inputs.opendaq-artifact-name }}"
21+
DEST=$(echo "D:\a\_temp" | sed 's|\\|/|g')
22+
ARTIFACT_NAME="Package (Windows VS 2022 x64 Release)"
23+
ARTIFACT_DIR="$DEST/$ARTIFACT_NAME"
2324
24-
gh run download ${{ inputs.opendaq-artifact-run-id }} \
25+
gh run download "17825032140" \
2526
--repo openDAQ/openDAQ \
26-
--pattern ${{ inputs.opendaq-artifact-name }} \
27+
--pattern "$ARTIFACT_NAME" \
2728
--dir "$DEST"
2829
2930
echo "$ARTIFACT_DIR/"

0 commit comments

Comments
 (0)