We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c78720 commit ecc9e4aCopy full SHA for ecc9e4a
.github/workflows/runtime-ci.yml
@@ -363,8 +363,13 @@ jobs:
363
- name: Create NuGet SDK Packages
364
run: |
365
cd nuget
366
- ls -la
+
367
+ # Adjust version numbers for target files
368
+ find . -name 'runtime/*.*' -exec sed -i "s/\$buildversion\$/\${{ steps.gitversion.outputs.semVer }}/g" {} \;
369
370
+ # Unzip all packages in separate folders
371
find . -name '*.zip' -exec sh -c 'unzip -d "${1%.*}" "$1"' _ {} \;
372
373
dotnet pack Uno.NETCore.App.Runtime.Mono.browser-wasm.csproj /p:OutputPath=$GITHUB_WORKSPACE/ci-output "/p:Version=${{ steps.gitversion.outputs.semVer }}"
374
375
- uses: actions/upload-artifact@v2
0 commit comments