Skip to content

Commit 00b1b80

Browse files
committed
fix(action): fix path of generated tar file
1 parent e21e34d commit 00b1b80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release-binaries.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
nim musl -d:pcre -f:on nim_norg.nim
6767
- name: Compress the Nim Language Server binaries
6868
run: |
69-
tar -c -z -v -f ../nim_norg-${{ matrix.target.name }}.tar.gz `ls nim_norg{,.exe} 2>/dev/null || true`
69+
tar -c -z -v -f ./nim_norg-${{ matrix.target.name }}.tar.gz `ls nim_norg{,.exe} 2>/dev/null || true`
7070
- name: Upload the Nim Language Server Binaries
7171
uses: actions/upload-artifact@v2
7272
with:
@@ -114,7 +114,7 @@ jobs:
114114
nimble build -f:on
115115
- name: Compress the Nim Language Server binaries
116116
run: |
117-
tar -c -z -v -f ../nim_norg-${{ matrix.target.name }}.tar.gz `ls nim_norg{,.exe} 2>/dev/null || true`
117+
tar -c -z -v -f ./nim_norg-${{ matrix.target.name }}.tar.gz `ls nim_norg{,.exe} 2>/dev/null || true`
118118
- name: Upload the Nim Language Server Binaries
119119
uses: actions/upload-artifact@v2
120120
with:

0 commit comments

Comments
 (0)