diff --git a/.github/workflows/dotnet-build.yml b/.github/workflows/dotnet-build.yml index d02e0b1b..8c787688 100644 --- a/.github/workflows/dotnet-build.yml +++ b/.github/workflows/dotnet-build.yml @@ -121,7 +121,7 @@ jobs: --timestamp-url "http://timestamp.digicert.com" --publisher-name ".NET Foundation" --description "Windows Community Toolkit" - --description-url "https://developer.microsoft.com/en-us/windows/uwp-community-toolkit" + --description-url "https://github.com/CommunityToolkit/Lottie-Windows" --azure-key-vault-url "${{ secrets.SIGN_KEY_VAULT_URL }}" --azure-key-vault-client-id ${{ secrets.SIGN_CLIENT_ID }} --azure-key-vault-client-secret "${{ secrets.SIGN_CLIENT_SECRET }}" @@ -129,6 +129,13 @@ jobs: --azure-key-vault-certificate "${{ secrets.SIGN_CERTIFICATE }}" --verbosity Information + - name: Push Signed Packages + run: | + dotnet nuget add source https://pkgs.dev.azure.com/dotnet/CommunityToolkit/_packaging/CommunityToolkit-MainLatest/nuget/v3/index.json ` + --name MainLatest ` + --username dummy --password ${{ secrets.DEVOPS_PACKAGE_PUSH_TOKEN }} + dotnet nuget push "**/*.nupkg" --api-key dummy --source MainLatest --skip-duplicate + - name: Publish Packages uses: actions/upload-artifact@v4 with: @@ -138,7 +145,7 @@ jobs: ${{ github.workspace }}/packages/**/*.nupkg release: - if: ${{ startsWith(github.ref, 'refs/tags/') }} + if: ${{ startsWith(github.ref, 'refs/heads/rel/') }} needs: [sign] environment: nuget-release-gate # This gates this job until manually approved runs-on: ubuntu-latest diff --git a/version.json b/version.json index 893ee2bc..fd0073ca 100644 --- a/version.json +++ b/version.json @@ -1,5 +1,5 @@ { - "version": "8.2.250523-rc.{height}", + "version": "8.2.250604-rc.{height}", "publicReleaseRefSpec": [ "^refs/heads/main$", // we release out of main "^refs/heads/dev$", // we release out of dev