From f76f38d2f86a520c257a503ba5b41cf3e7c74138 Mon Sep 17 00:00:00 2001 From: Andreas Date: Thu, 10 Oct 2024 08:56:35 +0200 Subject: [PATCH] Create build_publish.yml Created build and publish script for the nuget --- .github/workflows/build_publish.yml | 61 +++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 .github/workflows/build_publish.yml diff --git a/.github/workflows/build_publish.yml b/.github/workflows/build_publish.yml new file mode 100644 index 0000000..bf915ac --- /dev/null +++ b/.github/workflows/build_publish.yml @@ -0,0 +1,61 @@ +# based on: https://github.com/Redth/Maui.ContentButton/blob/main/.github/workflows/build-publish.yml +name: Build and Publish + +on: + pull_request: + push: + branches: [ main ] + release: + types: [published] + +jobs: + build: + name: Build + env: + NUPKG_MAJOR: 0.999 + runs-on: windows-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: 8.0.x + - name: Build + run: dotnet build --configuration Release + - name: Package NuGets + shell: pwsh + run: | + $VERSION="$env:NUPKG_MAJOR-ci$env:GITHUB_RUN_ID" + if ($env:GITHUB_EVENT_NAME -eq "release") { + $VERSION = $env:GITHUB_REF.Substring($env:GITHUB_REF.LastIndexOf('/') + 1) + } + echo "::set-output name=pkgverci::$VERSION" + echo "PACKAGE VERSION: $VERSION" + + New-Item -ItemType Directory -Force -Path .\artifacts + dotnet pack --output ./artifacts --configuration Release -p:PackageVersion=$VERSION ./src/MauiSettings/MauiSettings.csproj + + - name: Artifacts + uses: actions/upload-artifact@v4 + with: + name: NuGet + path: ./artifacts + +# publish: +# name: Publish +# needs: build +# runs-on: windows-latest +# if: github.event_name == 'release' +# steps: +# - name: Download Artifacts +# uses: actions/download-artifact@v4 +# with: +# name: NuGet +# - name: Setup .NET +# uses: actions/setup-dotnet@v3 +# with: +# dotnet-version: '8.0.x' +# - name: Push NuGet +# run: | +# dotnet nuget push *.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_ORG_API_KEY }}