Don't change TextBox position on note resizing in ListComponent #59
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: Build | |
on: [push] | |
jobs: | |
windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.nuget/packages | |
!~/.nuget/packages/unwanted | |
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-nuget- | |
- name: Run NUKE | |
run: .\build.ps1 --skip-tests --configuration Release | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: windows | |
path: ./artifacts | |
macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.nuget/packages | |
!~/.nuget/packages/unwanted | |
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-nuget- | |
- name: Run NUKE | |
run: chmod +x build.sh && ./build.sh --skip-tests --configuration Release | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: macos | |
path: ./artifacts | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.nuget/packages | |
!~/.nuget/packages/unwanted | |
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-nuget- | |
- name: Run NUKE | |
run: chmod +x build.sh && ./build.sh --skip-tests --configuration Release | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: linux | |
path: ./artifacts | |
browser: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.nuget/packages | |
!~/.nuget/packages/unwanted | |
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-nuget- | |
- name: Run NUKE | |
run: chmod +x build.sh && ./build.sh CompileBrowser --skip-tests --allow-browser-build --allow-desktop-build false --configuration Release | |
env: | |
NetlifySiteId: ${{ secrets.NETLIFY_SITE_ID }} | |
NetlifyAccessToken: ${{ secrets.NETLIFY_ACCESS_TOKEN }} | |
- name: Upload artifacts | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./src/NoteSHR.Browser/bin/Release/net8.0/browser-wasm/AppBundle | |
deploy-gh-pages: | |
runs-on: ubuntu-latest | |
needs: browser | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Deploy to GitHub Pages | |
uses: actions/deploy-pages@v4 |