From 713bab53d22c0a72186b4eb869c20e9fcf76ce7b Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> Date: Tue, 4 Apr 2023 08:29:19 +0100 Subject: [PATCH] fix platform name --- .github/workflows/build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 554c3c301..3f696dd27 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -53,9 +53,9 @@ jobs: shell: bash run: | mv $(cabal list-bin smp-server) smp-server-ubuntu-$platform_name - mv $(cabal list-bin ntf-server) ntf-server-ubuntu--$platform_name - mv $(cabal list-bin xftp-server) xftp-server-ubuntu--$platform_name - mv $(cabal list-bin xftp) xftp-ubuntu--$platform_name + mv $(cabal list-bin ntf-server) ntf-server-ubuntu-$platform_name + mv $(cabal list-bin xftp-server) xftp-server-ubuntu-$platform_name + mv $(cabal list-bin xftp) xftp-ubuntu-$platform_name - name: Build changelog if: startsWith(github.ref, 'refs/tags/v') && matrix.os == 'ubuntu-20.04' @@ -81,10 +81,10 @@ jobs: prerelease: true files: | LICENSE - smp-server-ubuntu--$platform_name - ntf-server-ubuntu--$platform_name - xftp-server-ubuntu--$platform_name - xftp-ubuntu--$platform_name + smp-server-ubuntu-$platform_name + ntf-server-ubuntu-$platform_name + xftp-server-ubuntu-$platform_name + xftp-ubuntu-$platform_name fail_on_unmatched_files: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}