Credit Card PSD Template Must Read Article
Must vs have to must not vs don t have to 7 e s l english grammar
Must or mustn t There was an error while loading. Product Design Presentation Board. Post Design With Using Shape
Must Read Article
must vs have to must not vs don t have to 7 e s l english grammar must or mustn t english lesson how to use modal verbs must have to and modal verbs esl modal verb must mustn t worksheet for a1 to a2 kids must vs should know the differences with examples engrdu 300 modal verb must sentences examples english grammar here modal verbs of obligation my lingua academy must or mustn t modal verbs class rules pptx modal verbs of obligation must have to need to 100 must modal verbs sentences modal verbs must example sentences modal verbs for children uses types and activities free word template can could may might must your 1 modal verb guide quiz pdf learn
| name: CI | |
| on: | |
| push: | |
| branches: [master, release-*] | |
| tags: | |
| - '[0-9]+.[0-9]+.[0-9]+' | |
| - '[0-9]+.[0-9]+.[0-9]+-*' | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: ${{ matrix.name }} | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| RID: ${{ matrix.name }} | |
| strategy: | |
| matrix: | |
| include: | |
| - os: windows-2022 | |
| name: win-x86 | |
| param: -x86 | |
| - os: windows-2022 | |
| name: win-x64 | |
| param: -x64 | |
| - os: windows-2022 | |
| name: win-arm64 | |
| param: -arm64 | |
| - os: ubuntu-24.04 | |
| name: linux-x64 | |
| - os: ubuntu-24.04 | |
| name: linux-arm | |
| - os: ubuntu-24.04 | |
| name: linux-arm64 | |
| - os: ubuntu-24.04 | |
| name: linux-ppc64le | |
| - os: ubuntu-24.04 | |
| name: linux-riscv64 | |
| - os: ubuntu-24.04 | |
| name: linux-musl-x64 | |
| - os: ubuntu-24.04 | |
| name: linux-musl-arm | |
| - os: ubuntu-24.04 | |
| name: linux-musl-arm64 | |
| - os: ubuntu-24.04 | |
| name: linux-musl-riscv64 | |
| - os: macos-14 | |
| name: osx-x64 | |
| - os: macos-14 | |
| name: osx-arm64 | |
| fail-fast: false | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4.2.2 | |
| with: | |
| submodules: true | |
| - name: Build Windows | |
| if: runner.os == 'Windows' | |
| run: ./build.libgit2.ps1 ${{ matrix.param }} | |
| - name: Build macOS | |
| if: runner.os == 'macOS' | |
| run: ./build.libgit2.sh | |
| - name: Setup QEMU | |
| if: startsWith(matrix.name, 'linux-musl-') | |
| run: docker run --privileged --rm tonistiigi/binfmt --install all | |
| - name: Build Linux | |
| if: runner.os == 'Linux' | |
| run: ./dockerbuild.sh | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4.4.3 | |
| with: | |
| name: ${{ matrix.name }} | |
| path: nuget.package/runtimes/${{ matrix.name }} | |
| package: | |
| name: Create package | |
| needs: build | |
| runs-on: ubuntu-24.04 | |
| env: | |
| DOTNET_NOLOGO: true | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4.2.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup .NET SDK | |
| uses: actions/setup-dotnet@v4.1.0 | |
| with: | |
| dotnet-version: 9.0.x | |
| - name: Download artifacts | |
| uses: actions/download-artifact@v4.1.8 | |
| with: | |
| path: nuget.package/runtimes/ | |
| - name: Create package | |
| run: dotnet pack nuget.package | |
| - name: Upload NuGet package | |
| uses: actions/upload-artifact@v4.4.3 | |
| with: | |
| name: NuGet package | |
| path: ./nuget.package/*.nupkg |