Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Voltstro committed Sep 9, 2024
1 parent aba70b2 commit e16f1f0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,17 +98,17 @@ 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
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: UWB-Engine-CEF-${{ matrix.package }}
path: ~/UWBStaging/*.tgz
path: ${{ github.workspace }}/UWBStaging/*.tgz

0 comments on commit e16f1f0

Please sign in to comment.