From 9ec172bb28cbb322ee69451d766515e37e25daad Mon Sep 17 00:00:00 2001 From: JupiterPi Date: Fri, 6 Dec 2024 19:03:43 +0100 Subject: [PATCH] workflow: fix typo --- .github/workflows/build-and-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index 926727c..4a6d86d 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -96,8 +96,8 @@ jobs: codesign --sign "Developer ID Application: Filen Cloud Dienste UG (haftungsbeschraenkt)" --force --keychain ~/Library/Keychains/build.keychain dist/filen-cli-macos-arm64 - name: Rename artifacts to include release number run: | - mv dist/filen-cli-win-x64 dist/filen-cli-${{ github.event.release.tag_name }}-win-x64.exe - mv dist/filen-cli-win-arm64 dist/filen-cli-${{ github.event.release.tag_name }}-win-arm64.exe + mv dist/filen-cli-win-x64.exe dist/filen-cli-${{ github.event.release.tag_name }}-win-x64.exe + mv dist/filen-cli-win-arm64.exe dist/filen-cli-${{ github.event.release.tag_name }}-win-arm64.exe mv dist/filen-cli-linux-x64 dist/filen-cli-${{ github.event.release.tag_name }}-linux-x64 mv dist/filen-cli-linux-arm64 dist/filen-cli-${{ github.event.release.tag_name }}-linux-arm64 mv dist/filen-cli-macos-x64 dist/filen-cli-${{ github.event.release.tag_name }}-macos-x64