From 89edac10de3db172c2d4135937be97077a675251 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Sun, 18 Sep 2022 00:38:32 -0700 Subject: [PATCH] ci: make sure deploy folder is created on macOS --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70bb4d661..5cfdb273b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -374,12 +374,15 @@ jobs: if: matrix.os-arch == 'x86_64' # ARM64 tests naturally won't be able to run on x86_64 runners - name: Create Package - working-directory: ${{ runner.workspace }}/build/deploy + working-directory: ${{ runner.workspace }}/build shell: bash run: | BUNDLE_NAME="Olive.app" brew install dylibbundler + mkdir deploy + cd deploy + mv ../app/$BUNDLE_NAME . mkdir $BUNDLE_NAME/Contents/Frameworks