From ca3065d70d3a75d8a8319fa6486a696475602958 Mon Sep 17 00:00:00 2001 From: Sergei Blinov Date: Wed, 20 Sep 2023 20:50:08 +0200 Subject: [PATCH] Fix dispatcher.ini generation (#584) --- .github/workflows/prerelease.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/prerelease.yaml b/.github/workflows/prerelease.yaml index 33d29262c..af144d5cc 100644 --- a/.github/workflows/prerelease.yaml +++ b/.github/workflows/prerelease.yaml @@ -223,9 +223,9 @@ jobs: - name: Make archive run: | chmod +x ${{ matrix.result }}/* - printf "%s\n" ${{ matrix.result }}/git-remote-gosh_* | sort -rV | tee '${{ matrix.result }}/dispatcher.ini' - - tar -czvf ${{ matrix.result }}.tar.gz -C ${{ matrix.result }} . + cd ${{ matrix.result }} + printf "%s\n" git-remote-gosh_* | sort -rV | tee dispatcher.ini + tar -czvf ../${{ matrix.result }}.tar.gz . - name: Upload Draft uses: softprops/action-gh-release@v1