From e16f1f0c5271147b813839e4633db2d643aa786b Mon Sep 17 00:00:00 2001 From: Voltstro Date: Mon, 9 Sep 2024 17:38:27 +1000 Subject: [PATCH] Update CI --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5dc489c..7b4369b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -98,12 +98,12 @@ jobs: # Create an output directory for artifacts - name: Create Artifacts Staging Directory shell: pwsh - run: mkdir ~/UWBStaging/ + run: mkdir ${{ github.workspace }}/UWBStaging/ # Pack UWB Core - - name: Pack Core Package + - name: Pack CEF Engine ${{ matrix.package }} Package shell: pwsh - run: npm pack --pack-destination ~/UWBStaging/ + run: npm pack --pack-destination ${{ github.workspace }}/UWBStaging/ working-directory: src/Packages/UnityWebBrowser.Engine.Cef.${{ matrix.package }} # Upload Packed Packages @@ -111,4 +111,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: UWB-Engine-CEF-${{ matrix.package }} - path: ~/UWBStaging/*.tgz + path: ${{ github.workspace }}/UWBStaging/*.tgz