From 6974c67ac66a1d8ab8b29acec3ff445394cba666 Mon Sep 17 00:00:00 2001 From: k3y0708 Date: Tue, 9 May 2023 22:12:50 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20Use=20correct=20dir?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/Release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 57e99d2..66a72fd 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -40,7 +40,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./out/otter-linux-amd64 + asset_path: ./build/otter-linux-amd64 asset_name: otter-linux-amd64 asset_content_type: application/x-executable - name: upload mac intel64 artifact @@ -49,6 +49,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./out/otter-mac-amd64 + asset_path: ./build/otter-mac-amd64 asset_name: otter-mac-amd64 asset_content_type: application/x-mach-binary