From c258738f761a94bd0e5c08252357e144df45053e Mon Sep 17 00:00:00 2001 From: mms-gianni Date: Tue, 2 Mar 2021 15:19:52 +0100 Subject: [PATCH] fix another path --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 66be906..3bd6fc0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./git-project.linux.64bit + asset_path: ./cmd/git-project/git-project.linux.64bit asset_name: git-project.linux.64bit asset_content_type: application/x-binary - name: Upload mac binary @@ -49,7 +49,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./git-project.mac.64bit + asset_path: ./cmd/git-project/git-project.mac.64bit asset_name: git-project.mac.64bit asset_content_type: application/x-binary - name: Upload windows binary @@ -59,7 +59,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./git-project.windows.64bit + asset_path: ./cmd/git-project/git-project.windows.64bit asset_name: git-project.windows.64bit asset_content_type: application/x-binary