Skip to content

Commit 37af6cf

Browse files
committed
fix: uncompress
1 parent ae42ee9 commit 37af6cf

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

action.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,16 @@ runs:
5252
run: wget -O "${HELPER_PATH}.tar.gz" "${PACKAGE_URL}"
5353
- name: Uncompress the .NET program
5454
shell: bash
55-
run: tar -xf "${HELPER_PATH}.tar.gz" "${HELPER_PATH}/"
55+
run: |
56+
mkdir "${HELPER_PATH}/"
57+
tar -xf "${HELPER_PATH}.tar.gz" -C "${HELPER_PATH}/"
5658
- name: Run the .NET program
5759
shell: bash
5860
env:
5961
VALUES_TO_TAKE: ${{ inputs.values-to-take }}
6062
WORKFLOW_KEY: ${{ inputs.workflow-yaml-key }}
6163
GIT_TAGS: ${{ inputs.git-tags }}
62-
run: ./${HELPER_PATH}/Main "${GIT_TAGS}"
64+
run: ./${HELPER_PATH}/out/Main "${GIT_TAGS}"
6365

6466
- name: Merge the workflows
6567
uses: mikefarah/yq@master

0 commit comments

Comments
 (0)