Skip to content

Commit

Permalink
chore: replace version in target files
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban committed Aug 2, 2024
1 parent 7c78720 commit ecc9e4a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/runtime-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,13 @@ jobs:
- name: Create NuGet SDK Packages
run: |
cd nuget
ls -la
# Adjust version numbers for target files
find . -name 'runtime/*.*' -exec sed -i "s/\$buildversion\$/\${{ steps.gitversion.outputs.semVer }}/g" {} \;
# Unzip all packages in separate folders
find . -name '*.zip' -exec sh -c 'unzip -d "${1%.*}" "$1"' _ {} \;
dotnet pack Uno.NETCore.App.Runtime.Mono.browser-wasm.csproj /p:OutputPath=$GITHUB_WORKSPACE/ci-output "/p:Version=${{ steps.gitversion.outputs.semVer }}"
- uses: actions/upload-artifact@v2
Expand Down

0 comments on commit ecc9e4a

Please sign in to comment.