We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed73c41 commit 892ea62Copy full SHA for 892ea62
.github/actions/opendaq-github-download-artifact/action.yml
@@ -18,12 +18,13 @@ runs:
18
- name: Download openDAQ artifact
19
shell: bash
20
run: |
21
- DEST=$(echo "${{ inputs.destination-dir }}" | sed 's|\\|/|g')
22
- ARTIFACT_DIR="$DEST/${{ inputs.opendaq-artifact-name }}"
+ DEST=$(echo "D:\a\_temp" | sed 's|\\|/|g')
+ ARTIFACT_NAME="Package (Windows VS 2022 x64 Release)"
23
+ ARTIFACT_DIR="$DEST/$ARTIFACT_NAME"
24
- gh run download ${{ inputs.opendaq-artifact-run-id }} \
25
+ gh run download "17825032140" \
26
--repo openDAQ/openDAQ \
- --pattern ${{ inputs.opendaq-artifact-name }} \
27
+ --pattern "$ARTIFACT_NAME" \
28
--dir "$DEST"
29
30
echo "$ARTIFACT_DIR/"
0 commit comments