Skip to content

Enable scrolling behavior to work correctly by making sure there is background of transparent on the panels for containers. #583

Enable scrolling behavior to work correctly by making sure there is background of transparent on the panels for containers.

Enable scrolling behavior to work correctly by making sure there is background of transparent on the panels for containers. #583

Workflow file for this run

name: General Build
concurrency: build_checks_deploy
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
defaults:
run:
working-directory: ./src
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration release
- name: Test
run: dotnet test # --configuration release todo: release get stuck and never finishes
- name: Pack
run: dotnet pack --configuration release -o ./packages --version-suffix alpha-${{ github.run_number }} # https://stackoverflow.com/a/60067489/2362847
- name: Push
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main'}}
run: dotnet nuget push **/*.nupkg --api-key ${{ secrets.NUGET_KEY }} --source https://api.nuget.org/v3/index.json