From 9df885a2647b296fe504fd2a9235a4c2bb795ba4 Mon Sep 17 00:00:00 2001 From: CptMoore <39010654+CptMoore@users.noreply.github.com> Date: Wed, 9 Apr 2025 20:33:05 +0200 Subject: [PATCH] Fixed tagged releases #2 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 53acfa5e..9eeb84e4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -186,7 +186,6 @@ jobs: merge-multiple: true - name: Checkout Repo - if: github.ref == 'refs/heads/master' uses: actions/checkout@v4 with: path: source @@ -211,7 +210,8 @@ jobs: - name: Upload to tagged release if: startsWith(github.ref, 'refs/tags/v') + working-directory: source run: | - gh release upload "$GITHUB_REF_NAME" dist/* --clobber + gh release upload "$GITHUB_REF_NAME" ../dist/* --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}