feat: adjust ActualWidth and ActualHeight for TextBlock #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: OpenSilver Build | |
env: | |
next-release-version: '2.2.0' | |
current-release-version: '2.1.0' | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
OpenSilver-Build: | |
#We should not run these steps on the forks by default. | |
if: github.repository_owner == 'OpenSilver' | |
runs-on: windows-latest | |
steps: | |
- uses: microsoft/setup-msbuild@v1.1 | |
- name: Inject slug/short variables | |
uses: rlespinasse/github-slug-action@v3.x | |
- uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.0.203' | |
- name: Clone OpenSilver repo | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.ref }} | |
- name: Restore Packages | |
run: ./restore-packages-opensilver.bat | |
- name: Update compiler | |
run: ./build/update-compiler.bat | |
- name: Build OpenSilver | |
working-directory: build | |
run: msbuild slnf/OpenSilver.slnf -p:Configuration=Release -clp:ErrorsOnly -restore | |
- name: Format Version Suffix | |
id: format-suffix | |
run: echo "suffix=$(date +'%Y-%m-%d-%H%M%S')-${{ env.GITHUB_SHA_SHORT }}" >> $env:GITHUB_OUTPUT | |
- name: Format Package Version | |
id: format-version | |
run: echo "version=${{ env.next-release-version }}-preview-${{ steps.format-suffix.outputs.suffix }}" >> $env:GITHUB_OUTPUT | |
- name: Build Simulator | |
working-directory: build | |
run: msbuild slnf/OpenSilver.Simulator.slnf -p:Configuration=Release -clp:ErrorsOnly -restore | |
- name: Pack OpenSilver | |
working-directory: build | |
run: | | |
mkdir temp; echo "OpenSilver ${{ steps.format-version.outputs.version }}" > temp/Version.txt | |
nuget.exe pack nuspec\OpenSilver.nuspec -OutputDirectory "output/OpenSilver" -Properties "PackageVersion=${{ steps.format-version.outputs.version }};Configuration=Release;RepositoryUrl=https://github.com/${{ env.GITHUB_REPOSITORY_OWNER_PART }}/${{ env.GITHUB_REPOSITORY_NAME_PART }}" | |
- name: Pack Simulator | |
working-directory: build | |
run: | | |
echo "OpenSilver.Simulator ${{ steps.format-version.outputs.version }}" > temp/Version.txt | |
nuget.exe pack nuspec\OpenSilver.Simulator.nuspec -OutputDirectory "output/OpenSilver" -BasePath ".\" -Properties "PackageVersion=${{ steps.format-version.outputs.version }};Configuration=Release;RepositoryUrl=https://github.com/${{ env.GITHUB_REPOSITORY_OWNER_PART }}/${{ env.GITHUB_REPOSITORY_NAME_PART }}" | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: OpenSilver | |
path: "build/output/OpenSilver" | |
- name: Upload packages | |
run: | | |
dotnet nuget push "build\output\OpenSilver\*.nupkg" -k ${{ secrets.GITHUB_TOKEN }} -s https://nuget.pkg.github.com/${{ env.GITHUB_REPOSITORY_OWNER_PART }}/index.json | |
- name: Upload packages to MyGet | |
run: | | |
dotnet nuget push "build\output\OpenSilver\*.nupkg" -k ${{ secrets.MYGET_TOKEN }} -s https://www.myget.org/F/opensilver/api/v2/package |