Skip to content

Commit

Permalink
chore: Adjust lookup paths (#31)
Browse files Browse the repository at this point in the history
* chore: Adjust lookup paths

* chore: List files

* ci: Adjust paths

* chore: Adjust path

* chore: Update year
  • Loading branch information
jeromelaban authored Oct 23, 2024
1 parent 8fd12c2 commit 3b28c74
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
name: 'Build (emsdk:${{ matrix.EMSCRIPTEN_VERSION }} Threads:${{ matrix.EMSCRIPTEN_THREADS }} SIMD:${{ matrix.EMSCRIPTEN_SIMD }})'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
Expand All @@ -113,10 +113,15 @@ jobs:
with:
dotnet-version: 8.0.100

- name: List files
run: |
Get-ChildItem -Recurse ./native-artifacts
- name: Build nuget
run: |
& .\src\nuget\nuget.exe pack src\nuget\uno.sqlite-wasm.nuspec -OutputDirectory "$env:GITHUB_WORKSPACE\artifacts"
cd src\nuget
& .\nuget.exe pack uno.sqlite-wasm.nuspec -OutputDirectory "$env:GITHUB_WORKSPACE\artifacts"
- uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
Expand All @@ -134,7 +139,7 @@ jobs:
name: Release

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download package
uses: actions/download-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions src/nuget/uno.sqlite-wasm.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<projectUrl>https://github.com/unoplatform/uno.sqlite-wasm</projectUrl>
<iconUrl>https://nv-assets.azurewebsites.net/logos/uno.png</iconUrl>
<description>The SQLite database engine for WebAssembly</description>
<copyright>Copyright (C) 2015-2022 Uno Platform inc. - all rights reserved</copyright>
<copyright>Copyright (C) 2015-2024 Uno Platform inc. - all rights reserved</copyright>
<repository type="git" url="https://github.com/unoplatform/Uno.sqlite-wasm.git" />

<contentFiles>
Expand All @@ -19,7 +19,7 @@
</contentFiles>
</metadata>
<files>
<file src="../../native-artifacts/**/*" target="buildTransitive" />
<file src="..\..\native-artifacts\**\*" target="buildTransitive" />
<file src="Uno.sqlite-wasm.targets" target="buildTransitive" />
</files>
</package>

0 comments on commit 3b28c74

Please sign in to comment.