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 ae42ee9 commit 37af6cfCopy full SHA for 37af6cf
action.yml
@@ -52,14 +52,16 @@ runs:
52
run: wget -O "${HELPER_PATH}.tar.gz" "${PACKAGE_URL}"
53
- name: Uncompress the .NET program
54
shell: bash
55
- run: tar -xf "${HELPER_PATH}.tar.gz" "${HELPER_PATH}/"
+ run: |
56
+ mkdir "${HELPER_PATH}/"
57
+ tar -xf "${HELPER_PATH}.tar.gz" -C "${HELPER_PATH}/"
58
- name: Run the .NET program
59
60
env:
61
VALUES_TO_TAKE: ${{ inputs.values-to-take }}
62
WORKFLOW_KEY: ${{ inputs.workflow-yaml-key }}
63
GIT_TAGS: ${{ inputs.git-tags }}
- run: ./${HELPER_PATH}/Main "${GIT_TAGS}"
64
+ run: ./${HELPER_PATH}/out/Main "${GIT_TAGS}"
65
66
- name: Merge the workflows
67
uses: mikefarah/yq@master
0 commit comments