Skip to content

Commit 1517b26

Browse files
authored
Merge pull request #1779 from atls/fix/dsm-next
fix(workflows): fix pathing
2 parents 29df759 + 2e4a691 commit 1517b26

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/dsm.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,12 @@ jobs:
2121
latest: true
2222
fileName: dsm-launcher-x86_64-unknown-linux-gnu.tar.gz
2323
extract: true
24+
out-file-path: ${{ github.action_path }}
2425

2526
- name: Run DSM launcher
26-
run: ./dsm-launcher
27+
run: |
28+
cd "${{ github.action_path }}"
29+
./dsm-launcher
2730
env:
2831
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
2932
GITHUB_REPO_OWNER: ${{ github.repository_owner }}

0 commit comments

Comments
 (0)