Skip to content

Commit 2e4a691

Browse files
fix(workflows): fix pathing
1 parent 06c1d7d commit 2e4a691

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
@@ -24,9 +24,12 @@ jobs:
2424
latest: true
2525
fileName: dsm-launcher-x86_64-unknown-linux-gnu.tar.gz
2626
extract: true
27+
out-file-path: ${{ github.action_path }}
2728

2829
- name: Run DSM launcher
29-
run: ./dsm-launcher
30+
run: |
31+
cd "${{ github.action_path }}"
32+
./dsm-launcher
3033
env:
3134
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
3235
GITHUB_REPO_OWNER: ${{ github.repository_owner }}

0 commit comments

Comments
 (0)