Skip to content

Commit 3b28c74

Browse files
authored
chore: Adjust lookup paths (#31)
* chore: Adjust lookup paths * chore: List files * ci: Adjust paths * chore: Adjust path * chore: Update year
1 parent 8fd12c2 commit 3b28c74

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.github/workflows/main.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
name: 'Build (emsdk:${{ matrix.EMSCRIPTEN_VERSION }} Threads:${{ matrix.EMSCRIPTEN_THREADS }} SIMD:${{ matrix.EMSCRIPTEN_SIMD }})'
2727

2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030

3131
- uses: actions/setup-node@v4
3232
with:
@@ -94,7 +94,7 @@ jobs:
9494
runs-on: windows-latest
9595

9696
steps:
97-
- uses: actions/checkout@v3
97+
- uses: actions/checkout@v4
9898

9999
- name: Merge Artifacts
100100
uses: actions/upload-artifact/merge@v4
@@ -113,10 +113,15 @@ jobs:
113113
with:
114114
dotnet-version: 8.0.100
115115

116+
- name: List files
117+
run: |
118+
Get-ChildItem -Recurse ./native-artifacts
119+
116120
- name: Build nuget
117121
run: |
118-
& .\src\nuget\nuget.exe pack src\nuget\uno.sqlite-wasm.nuspec -OutputDirectory "$env:GITHUB_WORKSPACE\artifacts"
119-
122+
cd src\nuget
123+
& .\nuget.exe pack uno.sqlite-wasm.nuspec -OutputDirectory "$env:GITHUB_WORKSPACE\artifacts"
124+
120125
- uses: actions/upload-artifact@v4
121126
if: ${{ always() }}
122127
with:
@@ -134,7 +139,7 @@ jobs:
134139
name: Release
135140

136141
steps:
137-
- uses: actions/checkout@v3
142+
- uses: actions/checkout@v4
138143

139144
- name: Download package
140145
uses: actions/download-artifact@v4

src/nuget/uno.sqlite-wasm.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<projectUrl>https://github.com/unoplatform/uno.sqlite-wasm</projectUrl>
1111
<iconUrl>https://nv-assets.azurewebsites.net/logos/uno.png</iconUrl>
1212
<description>The SQLite database engine for WebAssembly</description>
13-
<copyright>Copyright (C) 2015-2022 Uno Platform inc. - all rights reserved</copyright>
13+
<copyright>Copyright (C) 2015-2024 Uno Platform inc. - all rights reserved</copyright>
1414
<repository type="git" url="https://github.com/unoplatform/Uno.sqlite-wasm.git" />
1515

1616
<contentFiles>
@@ -19,7 +19,7 @@
1919
</contentFiles>
2020
</metadata>
2121
<files>
22-
<file src="../../native-artifacts/**/*" target="buildTransitive" />
22+
<file src="..\..\native-artifacts\**\*" target="buildTransitive" />
2323
<file src="Uno.sqlite-wasm.targets" target="buildTransitive" />
2424
</files>
2525
</package>

0 commit comments

Comments
 (0)