From d74cd63d80b99a5ae87909e38c1ebf893984ee1e Mon Sep 17 00:00:00 2001 From: Christoph Hofmann Date: Mon, 30 Dec 2024 22:13:39 +0100 Subject: [PATCH] Fix build directory path in release workflow and update msixbundle file pattern Signed-off-by: Christoph Hofmann --- .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 55abe796..5d66170f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,7 +1,7 @@ name: App Release env: - BuildDirectory: '${{github.workspace}}\build' + BuildDirectory: '${{github.workspace}}/build' on: workflow_call: @@ -52,4 +52,4 @@ jobs: automatic_release_tag: ${{inputs.build_number}} title: ${{inputs.build_number}} files: | - **/*.msixbundle + ${{env.BuildDirectory}}/**/*.msixbundle